send-reports: Truncate content to 50K.
[patchq.git] / config.py
1 # patchq configuration.
2
3 # Address of the RabbitMQ server.  Port 5672 must be open on the
4 # server's firewall.
5 mq_server = "mq.home.annexia.org"
6
7 # These are the test jobs that we run in parallel on each patch series.
8 tests = [
9     "check-syntax",   # runs make check-syntax
10     "check-release"   # compiles and runs all of the release tests
11 ]
12
13 # How long to wait (in seconds) for all emails in a thread to appear.
14 assembly_time = 86400
15
16 # If not None [for testing], then replies are only sent to this email
17 # address.
18 #
19 # If this is None [for production], then we do a "group reply".
20 reply_override = None
21 #reply_override = ("Test Person", "test@example.com")
22
23 # The address where report emails come from.
24 # Set this to your own (name, email).
25 from_address = ("Richard Jones", "rjones@redhat.com")
26
27 # The SMTP server to send through.
28 smtp_server = "smtp.corp.redhat.com"