forked from williamh/pybugz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bugzrc.example
60 lines (60 loc) · 1.7 KB
/
bugzrc.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#
# bugzrc.example - an example configuration file for pybugz
#
# This file consists of sections which define parameters for each
# bugzilla you plan to use.
#
# Each section begins with a name in square brackets. This is also the
# name that should be used with the --connection parameter to the bugz
# command.
#
# Each section of this file consists of lines in the form:
# key: value
# as listed below.
#
# [sectionname]
#
# The base url of the bugzilla you wish to use.
# This must point to the xmlrpc.cgi script on the bugzilla installation.
#
# base: http://my.project.com/bugzilla/xmlrpc.cgi
#
# It is also possible to encode a username and password into this URL
# for basic http authentication as follows:
#
# base: http://myhttpname:myhttppasswd@my.project.com/bugzilla/xmlrpc.cgi
#
# Next are your username and password for this bugzilla.
#
# user: myname@my.project.com
# password: secret2
#
# As an alternative to keeping your password in this file you can provide a
# password command. It is evaluated and pybugz expects this command to output
# the password to standard out. E.g.:
#
# passwordcmd: gpg2 --decrypt /myhome/.my-encrypted-password.gpg
#
# The number of columns your terminal can display.
# Most of the time you should not have to set this.
#
# columns: 80
#
# Set the output encoding for pybugz.
#
# encoding: utf-8
#
# Run in quiet mode.
#
# quiet: True
#
# The special section named 'default' may also be used. Other sections will
# override any values specified here. The optional special key 'connection' is
# used to name the default connection, to use when no --connection parameter is
# specified to the bugz command.
#
# [default]
# connection: sectionname
# httpuser: xyz
# httppassword: secret2
# etc.