sstmp: document how to specify port/AuthPassFile

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