getmail: fix port option type mismatch
Fixed type mismatch in commit410f573226
. Added test case to ensure it works well. (cherry picked from commita177d0282f
)
This commit is contained in:
parent
06ae8792e7
commit
e413a1408e
|
@ -31,7 +31,7 @@ let
|
||||||
[retriever]
|
[retriever]
|
||||||
type = ${retrieverType}
|
type = ${retrieverType}
|
||||||
server = ${imap.host}
|
server = ${imap.host}
|
||||||
${optionalString (imap.port != null) "port = ${imap.port}"}
|
${optionalString (imap.port != null) "port = ${toString imap.port}"}
|
||||||
username = ${userName}
|
username = ${userName}
|
||||||
password_command = (${passCmd})
|
password_command = (${passCmd})
|
||||||
mailboxes = ( ${renderedMailboxes} )
|
mailboxes = ( ${renderedMailboxes} )
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
[retriever]
|
[retriever]
|
||||||
type = SimpleIMAPSSLRetriever
|
type = SimpleIMAPSSLRetriever
|
||||||
server = imap.example.com
|
server = imap.example.com
|
||||||
|
port = 993
|
||||||
username = home.manager
|
username = home.manager
|
||||||
password_command = ('password-command')
|
password_command = ('password-command')
|
||||||
mailboxes = ( 'INBOX', 'Sent', 'Work' )
|
mailboxes = ( 'INBOX', 'Sent', 'Work' )
|
||||||
|
|
|
@ -10,11 +10,14 @@ with lib;
|
||||||
home.homeDirectory = "/home/hm-user";
|
home.homeDirectory = "/home/hm-user";
|
||||||
|
|
||||||
accounts.email.accounts = {
|
accounts.email.accounts = {
|
||||||
"hm@example.com".getmail = {
|
"hm@example.com" = {
|
||||||
enable = true;
|
getmail = {
|
||||||
mailboxes = ["INBOX" "Sent" "Work"];
|
enable = true;
|
||||||
destinationCommand = "/bin/maildrop";
|
mailboxes = ["INBOX" "Sent" "Work"];
|
||||||
delete = false;
|
destinationCommand = "/bin/maildrop";
|
||||||
|
delete = false;
|
||||||
|
};
|
||||||
|
imap.port = 993;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue