diff options
author | Guilhem Moulin <guilhem@fripost.org> | 2020-05-16 14:54:27 +0200 |
---|---|---|
committer | Guilhem Moulin <guilhem@fripost.org> | 2020-05-16 15:51:54 +0200 |
commit | 0d844c7a788901fec3036e14ab07a4756f344415 (patch) | |
tree | d7994a8309248ffca496cce10aac356e92343349 | |
parent | 30c52c6fd758059604b44564384ae919940cf994 (diff) |
sympa.conf: remove deprecated options.
-rw-r--r-- | roles/lists/files/etc/sympa/sympa/sympa.conf | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/roles/lists/files/etc/sympa/sympa/sympa.conf b/roles/lists/files/etc/sympa/sympa/sympa.conf index 94182cd..75072cf 100644 --- a/roles/lists/files/etc/sympa/sympa/sympa.conf +++ b/roles/lists/files/etc/sympa/sympa/sympa.conf @@ -1,35 +1,35 @@ ###\\\\ Site customization ////### ## Main robot hostname domain lists.fripost.org ## Local part of sympa email address ## Effective address will be [EMAIL]@[HOST] email sympa ## Listmasters email list comma separated ## Sympa will associate listmaster privileges to these email addresses (mail and web interfaces). Some error reports may also be sent to these addresses. listmaster listmaster@fripost.org ## URL of main Web page -wwsympa_url http://lists.fripost.org/sympa +wwsympa_url https://lists.fripost.org/sympa max_wrong_password 19 ## Directory for storing static contents (CSS, members pictures, documentation) directly delivered by Apache static_content_path /usr/share/sympa/static_content ## URL mapped with the static_content_path directory defined above static_content_url /static-sympa css_url /css-sympa css_path /var/lib/sympa/css pictures_path /var/lib/sympa/pictures pictures_url /pictures-sympa ## Secret used by Sympa to make MD5 fingerprint in web cookies secure ## Should not be changed ! May invalid all user password cookie `/usr/bin/head -n1 /etc/sympa/cookie` ## Who is able to create lists @@ -50,42 +50,40 @@ etc /etc/sympa ## Do not forget to edit syslog.conf syslog `cat /etc/sympa/facility` ## Log verbosity ## 0: normal, 2,3,4: for debug log_level 0 ## Communication mode with syslogd (unix | inet) log_socket_type unix ## Umask used for file creation by Sympa umask 027 ###\\\\ Sending related ////### ## Path to the MTA (sendmail, postfix, exim or qmail) ## should point to a sendmail-compatible binary (eg: a binary named "sendmail" is distributed with Postfix) sendmail /usr/sbin/sendmail sendmail_aliases none -distribution_mode fork - ## Max. number of Sendmail processes (launched by Sympa) running simultaneously ## Proposed value is quite low, you can rise it up to 100, 200 or even 300 with powerfull systems. maxsmtp 128 log_smtp off ## comma separated list of operations for which blacklist filter is applied ## Setting this parameter to "none" will hide the blacklist feature use_blacklist send,create_list ## Default maximum size (in bytes) for messages (can be re-defined for each list) max_size 5242880 ## Maximum number of recipients per call to Sendmail. The nrcpt_by_domain.conf file allows a different tuning per destination domain. nrcpt 25 ## Max. number of different domains per call to Sendmail avg 10 ## Specify which rfc2369 mailing list headers to add @@ -118,42 +116,40 @@ bulk_lazytime 600 ## The number of seconds a bulk sleeps between starting a new loop if it didn't find a message to send. ## Keep it small if you want your server to be reactive. bulk_sleep 1 ## Number of seconds a master bulk waits between two packets number checks. ## Keep it small if you expect brutal increases in the message sending load. bulk_wait_to_fork 10 ###\\\\ Quotas ////### ###\\\\ Spool related ////### ## Directory containing various specialized spools ## All spool are created at runtime by sympa.pl spool /var/spool/sympa ## Directory for incoming spool queue /var/spool/sympa/msg -queuedistribute /var/spool/sympa/distribute - ## Directory for moderation spool queuemod /var/spool/sympa/moderation ## Directory for digest spool queuedigest /var/spool/sympa/digest ## Directory for authentication spool queueauth /var/spool/sympa/auth ## Directory for outgoing spool queueoutgoing /var/spool/sympa/outgoing ## Directory for subscription spool queuesubscribe /var/spool/sympa/subscribe ## Directory for topic spool queuetopic /var/spool/sympa/topic ## Directory for bounce incoming spool queuebounce /var/spool/sympa/bounce @@ -248,52 +244,46 @@ db_user sympa ## Database private extention to user table ## You need to extend the database format with these fields #db_additional_user_fields age,address ## Number of months that elapse before a log is expired logs_expiration_period 3 ## Default timeout between two scheduled synchronizations of list members with data sources. default_ttl 3600 ## Default timeout between two action-triggered synchronizations of list members with data sources. default_distribution_ttl 300 ## Default timeout while performing a fetch for an include_sql_query sync default_sql_fetch_timeout 300 ###\\\\ Loop prevention ////### ###\\\\ S/MIME configuration ////### -## Path to OpenSSL -## Sympa recognizes S/MIME if OpenSSL is installed -openssl /usr/bin/openssl - ## Directory containing trusted CA certificates #capath /etc/sympa/ssl.crt ## File containing bundled trusted CA certificates #cafile /usr/local/apache/conf/ssl.crt/ca-bundle.crt -crl_dir /var/lib/sympa/list_data/crl - ## Directory containing user certificates ssl_cert_dir /var/lib/sympa/list_data/X509-user-certs ## Password used to crypt lists private keys #key_passwd your_password ###\\\\ DKIM ////### dkim_feature off ## Insert a DKIM signature to message from the robot, from the list or both dkim_add_signature_to robot,list ## Type of message that is added a DKIM signature before distribution to subscribers. Possible values are "none", "any" or a list of the following keywords: "md5_authenticated_messages", "smime_authenticated_messages", "dkim_authenticated_messages", "editor_validated_messages". dkim_signature_apply_on md5_authenticated_messages,smime_authenticated_messages,dkim_authenticated_messages,editor_validated_messages ## DMARC protection ## https://sympa-community.github.io/manual/customize/dmarc-protection.html dmarc_protection_mode dmarc_reject |