Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Delta Between Two Patch Sets: modules/roundup/templates/config.ini.erb

Issue 4553114493386752: Initial configuration for issues.adblockplus.org (Closed)
Left Patch Set: Created Dec. 13, 2013, 6:22 p.m.
Right Patch Set: Add to monitoring, rename to issues1 consistently, remove trailing ? Created Jan. 22, 2014, 2:50 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « modules/roundup/manifests/init.pp ('k') | modules/roundup/templates/roundup-server.ini.erb » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
1 # Roundup issue tracker configuration file 1 # Roundup issue tracker configuration file
2 # Autogenerated at Fri Nov 8 21:32:41 2013 2 # Autogenerated at Fri Nov 8 21:32:41 2013
3 3
4 # WARNING! Following options need adjustments: 4 # WARNING! Following options need adjustments:
5 # [mail]: domain, host 5 # [mail]: domain, host
6 # [tracker]: web 6 # [tracker]: web
7 7
8 [main] 8 [main]
9 9
10 # Database directory path. 10 # Database directory path.
(...skipping 17 matching lines...) Expand all
28 # The path may be either absolute or relative 28 # The path may be either absolute or relative
29 # to the directory containig this config file. 29 # to the directory containig this config file.
30 # Default: 30 # Default:
31 static_files = 31 static_files =
32 32
33 # Email address that roundup will complain to if it runs 33 # Email address that roundup will complain to if it runs
34 # into trouble. 34 # into trouble.
35 # If no domain is specified then the config item 35 # If no domain is specified then the config item
36 # mail -> domain is added. 36 # mail -> domain is added.
37 # Default: roundup-admin 37 # Default: roundup-admin
38 admin_email = root@localhost 38 admin_email = admins@adblockplus.org
Wladimir Palant 2014/01/22 09:05:29 admins@adblockplus.org? Or isn't that the final va
Felix Dahlke 2014/01/22 13:53:58 Done.
39 39
40 # The 'dispatcher' is a role that can get notified 40 # The 'dispatcher' is a role that can get notified
41 # of new items to the database. 41 # of new items to the database.
42 # It is used by the ERROR_MESSAGES_TO config setting. 42 # It is used by the ERROR_MESSAGES_TO config setting.
43 # If no domain is specified then the config item 43 # If no domain is specified then the config item
44 # mail -> domain is added. 44 # mail -> domain is added.
45 # Default: roundup-admin 45 # Default: roundup-admin
46 dispatcher_email = root@localhost 46 dispatcher_email = admins@adblockplus.org
47 47
48 # Additional text to include in the "name" part 48 # Additional text to include in the "name" part
49 # of the From: address used in nosy messages. 49 # of the From: address used in nosy messages.
50 # If the sending user is "Foo Bar", the From: line 50 # If the sending user is "Foo Bar", the From: line
51 # is usually: "Foo Bar" <issue_tracker@tracker.example> 51 # is usually: "Foo Bar" <issue_tracker@tracker.example>
52 # the EMAIL_FROM_TAG goes inside the "Foo Bar" quotes like so: 52 # the EMAIL_FROM_TAG goes inside the "Foo Bar" quotes like so:
53 # "Foo Bar EMAIL_FROM_TAG" <issue_tracker@tracker.example> 53 # "Foo Bar EMAIL_FROM_TAG" <issue_tracker@tracker.example>
54 # Default: 54 # Default:
55 email_from_tag = 55 email_from_tag =
56 56
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
130 # become faster. The currently enforced minimum number of 130 # become faster. The currently enforced minimum number of
131 # rounds is 1000. 131 # rounds is 1000.
132 # See: http://en.wikipedia.org/wiki/PBKDF2 and RFC2898 132 # See: http://en.wikipedia.org/wiki/PBKDF2 and RFC2898
133 # Default: 10000 133 # Default: 10000
134 password_pbkdf2_default_rounds = 10000 134 password_pbkdf2_default_rounds = 10000
135 135
136 [tracker] 136 [tracker]
137 137
138 # A descriptive name for your roundup instance. 138 # A descriptive name for your roundup instance.
139 # Default: Roundup issue tracker 139 # Default: Roundup issue tracker
140 name = Roundup issue tracker 140 name = Adblock Plus issue tracker
christian 2014/01/14 10:01:24 We should change the name in something like "Adblo
Felix Dahlke 2014/01/22 13:53:58 Done.
141 141
142 # The web address that the tracker is viewable at. 142 # The web address that the tracker is viewable at.
143 # This will be included in information sent to users of the tracker. 143 # This will be included in information sent to users of the tracker.
144 # The URL MUST include the cgi-bin part or anything else 144 # The URL MUST include the cgi-bin part or anything else
145 # that is required to get to the home page of the tracker. 145 # that is required to get to the home page of the tracker.
146 # You MUST include a trailing '/' in the URL. 146 # You MUST include a trailing '/' in the URL.
147 # Default: NO DEFAULT 147 # Default: NO DEFAULT
148 web = http://<%= @domain %>/ 148 web = http://<%= @domain %>/
149 149
150 # Email address that mail to roundup should go to. 150 # Email address that mail to roundup should go to.
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
185 # Set this option to 'no' if you want to ignore it. 185 # Set this option to 'no' if you want to ignore it.
186 # Allowed values: yes, no 186 # Allowed values: yes, no
187 # Default: yes 187 # Default: yes
188 use_browser_language = yes 188 use_browser_language = yes
189 189
190 # Setting this option makes Roundup display error tracebacks 190 # Setting this option makes Roundup display error tracebacks
191 # in the user's browser rather than emailing them to the 191 # in the user's browser rather than emailing them to the
192 # tracker admin. 192 # tracker admin.
193 # Allowed values: yes, no 193 # Allowed values: yes, no
194 # Default: no 194 # Default: no
195 debug = yes 195 debug = no
christian 2014/01/14 10:01:24 Is "debug = yes" set only for the test phase? If w
Felix Dahlke 2014/01/22 13:53:58 Done.
196 196
197 # Setting this option makes Roundup migrate passwords with 197 # Setting this option makes Roundup migrate passwords with
198 # an insecure password-scheme to a more secure scheme 198 # an insecure password-scheme to a more secure scheme
199 # when the user logs in via the web-interface. 199 # when the user logs in via the web-interface.
200 # Allowed values: yes, no 200 # Allowed values: yes, no
201 # Default: yes 201 # Default: yes
202 migrate_passwords = yes 202 migrate_passwords = yes
203 203
204 # Settings in this section are used by RDBMS backends only 204 # Settings in this section are used by RDBMS backends only
205 [rdbms] 205 [rdbms]
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
308 # The email domain that admin_email, issue_tracker and 308 # The email domain that admin_email, issue_tracker and
309 # dispatcher_email belong to. 309 # dispatcher_email belong to.
310 # This domain is added to those config items if they don't 310 # This domain is added to those config items if they don't
311 # explicitly include a domain. 311 # explicitly include a domain.
312 # Do not include the '@' symbol. 312 # Do not include the '@' symbol.
313 # Default: NO DEFAULT 313 # Default: NO DEFAULT
314 domain = <%= @domain %> 314 domain = <%= @domain %>
315 315
316 # SMTP mail host that roundup will use to send mail 316 # SMTP mail host that roundup will use to send mail
317 # Default: NO DEFAULT 317 # Default: NO DEFAULT
318 host = localhost 318 host = localhost
Wladimir Palant 2014/01/22 09:05:29 Heh, looking at http://issues.roundup-tracker.org/
Felix Dahlke 2014/01/22 13:53:58 Think that's a problem for us? Postfix is already
Wladimir Palant 2014/01/22 14:43:18 No, it's merely annoying that we have tweak Postfi
319 319
320 # SMTP login name. 320 # SMTP login name.
321 # Set this if your mail host requires authenticated access. 321 # Set this if your mail host requires authenticated access.
322 # If username is not empty, password (below) MUST be set! 322 # If username is not empty, password (below) MUST be set!
323 # Default: 323 # Default:
324 username = 324 username =
325 325
326 # SMTP login password. 326 # SMTP login password.
327 # Set this if your mail host requires authenticated access. 327 # Set this if your mail host requires authenticated access.
328 # Default: NO DEFAULT 328 # Default: NO DEFAULT
(...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after
565 # recipient. If "single" then a single email is sent with 565 # recipient. If "single" then a single email is sent with
566 # each recipient as a CC address. 566 # each recipient as a CC address.
567 # Default: single 567 # Default: single
568 email_sending = single 568 email_sending = single
569 569
570 # Attachments larger than the given number of bytes 570 # Attachments larger than the given number of bytes
571 # won't be attached to nosy mails. They will be replaced by 571 # won't be attached to nosy mails. They will be replaced by
572 # a link to the tracker's download page for the file. 572 # a link to the tracker's download page for the file.
573 # Default: 9223372036854775807 573 # Default: 9223372036854775807
574 max_attachment_size = 9223372036854775807 574 max_attachment_size = 9223372036854775807
LEFTRIGHT

Powered by Google App Engine
This is Rietveld