small pixel drawing of a pufferfish clist

Commit example config
j3s j3s@c3f.net
Mon, 30 Dec 2019 17:46:42 -0600
commit

37ba8777b3ea6056d147548e7ac18784ecb7de81

parent

73dca3f3ce3e1cd8493cc691f98fdff780c69a09

1 files changed, 41 insertions(+), 0 deletions(-)

jump to
A config.example

@@ -0,0 +1,41 @@

+# Logfile. clist does not rotate its logs automatically. Recommended path is +# /var/log/mail/clist.log +log = /var/log/mail/clist.log + +# An sqlite3 database is used for storing the email addresses subscribed to +# each mailing list. Recommended location is /var/lib/clist/lists.db +database = /var/lib/clist/lists.db + +# Address clist should receive user commands on +command_address = list-manager@example.com + +# SMTP details for sending mail +smtp_hostname = mail.example.com +smtp_port = 587 +smtp_username = "list-manager@example.com" +smtp_password = "ultra-secret-password" + +# Example of a typical list +[list.bugs] +address = bugs@example.com +name = "Bugs" +description = "bugs related to example dot com" +subscribers_only = true +archive = "https://example.com/bugs/archive" +owner = "https://example.com" + +# Example of an exclusively-postable announcement list +[list.announcements] +address = announce@example.com +name = "Announcements" +description = "Very very important announcements" +posters = j3s@example.com +archive = "https://announce.example.com" +owner = "https://example.com" + +# Anonymous list, anyone can post to this garbage +[list.test] +address = everyone@example.com +name = "Everybody everybody" +description = "It's a free for all" +subscribers_only = false