diff options
author | Miquel Lionel <lionel@les-miquelots.net> | 2021-06-18 17:00:49 +0100 |
---|---|---|
committer | Miquel Lionel <lionelmiquel@sfr.fr> | 2021-06-18 17:00:49 +0100 |
commit | 9e8493a95914425132813747651ed958f64d9f47 (patch) | |
tree | 1208968b1148d5c5e984cf11be70478aac618465 | |
parent | c737d6aefe406ac52f4e2f913365efdede3f58a4 (diff) | |
download | gpigeon-9e8493a95914425132813747651ed958f64d9f47.tar.gz gpigeon-9e8493a95914425132813747651ed958f64d9f47.zip |
less cruft in Net::SMTP(S) part, clearer
-rw-r--r-- | README.md | 4 | ||||
-rw-r--r-- | config.def.mk | 6 |
2 files changed, 4 insertions, 6 deletions
@@ -39,9 +39,7 @@ You will need perl and the following modules and my perl version is **v5.34.0**, Having a webserver with CGI support or a separate CGI engine is needed. I'm using nginx and fcgiwrap. -A note on **Net::SMTP** and **Net:SMTPS** dependencies: if you have a mailserver well -configured with SPF and OpenDKIM (so your chances to get your mail -treated as spam is greatly reduced) you should set the `HAS_MAILSERVER` +A note on **Net::SMTP** and **Net:SMTPS** dependencies: if you have a well configured mailserver on the same server you plan to install gpigeon on, you should set the `HAS_MAILSERVER` variable in `config.mk` to 1. diff --git a/config.def.mk b/config.def.mk index 9c03cd6..c2f185a 100644 --- a/config.def.mk +++ b/config.def.mk @@ -17,9 +17,9 @@ ARGON2ID_HASH = # gpg and email vars HAS_MAILSERVER = 0# choose 0 if you'll use an external mail server, 1 if local mail server installed. # you don't need to set the 3 last variables if you got a local mailserver. -MYGPG_ID_0XLONG =# the 0xlong format of your gpg key. -MYMAIL_ADDR =# your mail address -MAILSENDER =# the mailer address that'll send you the encrypted mails +MYGPG_ID_0XLONG =# the 0xlong format of your gpg key. - required +MYMAIL_ADDR =# your mail address - required +MAILSENDER =# the mailer address that'll send you the encrypted mails - required MAILSENDER_PW =# password for the mailer address SMTP_DOMAIN =# smtp domain pour the mailer SMTP_PORT =# smtp port for the mailer |