diff options
Diffstat (limited to 'mail-mta')
-rw-r--r-- | mail-mta/citadel/files/citadel.confd | 24 | ||||
-rw-r--r-- | mail-mta/citadel/files/mailer.conf | 9 |
2 files changed, 33 insertions, 0 deletions
diff --git a/mail-mta/citadel/files/citadel.confd b/mail-mta/citadel/files/citadel.confd new file mode 100644 index 0000000..1d7329c --- /dev/null +++ b/mail-mta/citadel/files/citadel.confd @@ -0,0 +1,24 @@ +# Config file for /etc/init.d/citadel + +#Define the Logfacility +LogFacility="mail" + +#Define the Loglevel +LogLevel="3" + +#Define a trace file (only for debugging) +#TraceFile="/dev/null" + + +#Don't mess with the following lines unless you really know what you are doing! +#I mean it!! This might b0rk your citadel. +#You could use -D instead of -d, if needed. +#Or mess around with -hHomeDir, which i do not recommend +CITSERVER_OPTS="-d -x${LogLevel} -l${LogFacility}" + +#-l Log facility. Usually “mail” +#-d daemonize (detach from controlling terminal) +#-D print the directories the server would access to stderr on startup +#-t${TraceFile} Send log messages to a file instead of syslog +#-x${LogLevel} Verbosity level of logging (0 to 9) +#-h${HomeDir} Data directory for this Citadel installation. If the directory name begins with a forward slash, it is an absolute path; otherwise it is relative to the default. Watch the output of -D to observe the effects. diff --git a/mail-mta/citadel/files/mailer.conf b/mail-mta/citadel/files/mailer.conf new file mode 100644 index 0000000..c9087a7 --- /dev/null +++ b/mail-mta/citadel/files/mailer.conf @@ -0,0 +1,9 @@ +# Execute the "real" sendmail program from citadel, +# named /usr/sbin/citmail +# +sendmail /usr/sbin/citmail + +#Citadel doesn't support these functions +#send-mail /usr/sbin/citmail +#mailq /usr/sbin/citmail +#newaliases /usr/sbin/citmail |