1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-02 21:13:33 +02:00

getmail: add port option (#882)

Fixed bug where "accounts.email.accounts.<name>.imap.port" option was being ignored in getmail.
This commit is contained in:
SoonHo Seo 2019-10-23 20:17:04 +09:00 committed by Matthieu Coudron
parent 024d1aa227
commit 410f573226
2 changed files with 2 additions and 0 deletions

View File

@ -31,6 +31,7 @@ let
[retriever] [retriever]
type = ${retrieverType} type = ${retrieverType}
server = ${imap.host} server = ${imap.host}
${optionalString (imap.port != null) "port = ${imap.port}"}
username = ${userName} username = ${userName}
password_command = (${passCmd}) password_command = (${passCmd})
mailboxes = ( ${renderedMailboxes} ) mailboxes = ( ${renderedMailboxes} )

View File

@ -2,6 +2,7 @@
[retriever] [retriever]
type = SimpleIMAPSSLRetriever type = SimpleIMAPSSLRetriever
server = imap.example.com server = imap.example.com
username = home.manager username = home.manager
password_command = ('password-command') password_command = ('password-command')
mailboxes = ( 'INBOX', 'Sent', 'Work' ) mailboxes = ( 'INBOX', 'Sent', 'Work' )