lol

sstmp: document how to specify port/AuthPassFile

+4 -2
+4 -2
nixos/modules/programs/ssmtp.nix
··· 39 example = "mail.example.org"; 40 description = '' 41 The host name of the default mail server to use to deliver 42 - e-mail. 43 ''; 44 }; 45 ··· 106 default = null; 107 example = "/run/keys/ssmtp-authpass"; 108 description = '' 109 - Path to a file that contains the password used for SMTP auth. 110 This file should be readable by the users that need to execute ssmtp. 111 112 <option>authPassFile</option> takes precedence over <option>authPass</option>.
··· 39 example = "mail.example.org"; 40 description = '' 41 The host name of the default mail server to use to deliver 42 + e-mail. Can also contain a port number (ex: mail.example.org:587), 43 + defaults to port 25 if no port is given. 44 ''; 45 }; 46 ··· 107 default = null; 108 example = "/run/keys/ssmtp-authpass"; 109 description = '' 110 + Path to a file that contains the password used for SMTP auth. The file 111 + should not contain a trailing newline, if the password does not contain one. 112 This file should be readable by the users that need to execute ssmtp. 113 114 <option>authPassFile</option> takes precedence over <option>authPass</option>.