| 1 | ## Launch Alue in the background? (true/false) |
|---|
| 2 | daemon=true |
|---|
| 3 | |
|---|
| 4 | ## The name of the user that Alue should run under. NOTE: This is |
|---|
| 5 | ## MANDATORY if alue is started as root, and is ignored otherwise. |
|---|
| 6 | user=alue |
|---|
| 7 | |
|---|
| 8 | ## The host name Alue should claim. NOTE: This *must* be a name you |
|---|
| 9 | ## control in the global DNS namespace, since it is used to create |
|---|
| 10 | ## globally unique identifiers. |
|---|
| 11 | # canonical-name = host.name.example |
|---|
| 12 | |
|---|
| 13 | ## The TCP port to use for plain and STARTTLS NNTP |
|---|
| 14 | nntp-port=119 |
|---|
| 15 | |
|---|
| 16 | ## The TCP port to use for NNTPS |
|---|
| 17 | nntps-port=563 |
|---|
| 18 | |
|---|
| 19 | ## The TCP port to use for HTTPS |
|---|
| 20 | https-port=443 |
|---|
| 21 | |
|---|
| 22 | ## The file name of the X.509 private key |
|---|
| 23 | # key-file=key.pem |
|---|
| 24 | |
|---|
| 25 | ## The file name of the X.509 certificate(s) |
|---|
| 26 | # cert-file=cert.pem |
|---|
| 27 | |
|---|
| 28 | ## Whether to log the details of SMTP traffic (true/false) |
|---|
| 29 | ## NOTE: This may invade users' privacy. |
|---|
| 30 | log-smtp=false |
|---|
| 31 | |
|---|
| 32 | ## Whether to log the details of HTTP(S) traffic (true/false) |
|---|
| 33 | ## NOTE: This may invade users' privacy. |
|---|
| 34 | log-http=false |
|---|
| 35 | |
|---|
| 36 | ## Whether to log the details of NNTP(S) traffic (true/false) |
|---|
| 37 | ## NOTE: This may invade users' privacy. |
|---|
| 38 | log-nntp=false |
|---|
| 39 | |
|---|
| 40 | ## The name of the log file |
|---|
| 41 | logfile=@logdir@/alue.log |
|---|
| 42 | |
|---|
| 43 | ## A limit (in bytes) for how much virtual memory Alue may use. |
|---|
| 44 | ## This is to guard against an (unlikely) occurrence of runaway allocation. |
|---|
| 45 | # vm-limit=202410241 |
|---|
| 46 | |
|---|
| 47 | ## The name of the directory containing templates for Alue's use |
|---|
| 48 | ## See the manual for instructions on how to create them. |
|---|
| 49 | include-dir=@pkgdatadir@/templates |
|---|
| 50 | |
|---|
| 51 | ## The name of the directory containing static files to serve over HTTPS |
|---|
| 52 | files-dir=@pkgdatadir@/files |
|---|
| 53 | |
|---|
| 54 | ## The name of the Alue database file |
|---|
| 55 | db-file=alue.db2 |
|---|
| 56 | |
|---|
| 57 | ## The name of the Alue password file |
|---|
| 58 | pw-file=passwds |
|---|
| 59 | |
|---|
| 60 | ## The directory relative to which the other file names are |
|---|
| 61 | home=@pkglocalstatedir@ |
|---|
| 62 | |
|---|
| 63 | ## The email address of the Alue operator. MANDATORY |
|---|
| 64 | # operator-email=operator@alue.site.example |
|---|
| 65 | |
|---|