From 2904f2263919d23c032976cb5fcec85ec27837cf Mon Sep 17 00:00:00 2001 From: Josef Friedrich Date: Mon, 22 Aug 2016 22:42:25 +0200 Subject: [PATCH] Use quotation marks for hostnames for better separation between key and values. Imap and pop3 can't be written in quotation marks. --- ...ils-from-a-remote-mail-server-(using-builtin-fetchmail).md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Retrieve-emails-from-a-remote-mail-server-(using-builtin-fetchmail).md b/Retrieve-emails-from-a-remote-mail-server-(using-builtin-fetchmail).md index fa161d0..8b9998b 100644 --- a/Retrieve-emails-from-a-remote-mail-server-(using-builtin-fetchmail).md +++ b/Retrieve-emails-from-a-remote-mail-server-(using-builtin-fetchmail).md @@ -26,7 +26,7 @@ A detailed description of the configuration options can be found in the [online ## Example IMAP configuration ``` -poll imap.example.com proto imap +poll 'imap.example.com' proto imap user 'username' pass 'secret' is 'user1@domain.tld' @@ -35,7 +35,7 @@ poll imap.example.com proto imap ## Example POP3 configuration ``` -poll pop3.example.com proto pop3 +poll 'pop3.example.com' proto pop3 user 'username' pass 'secret' is 'user2@domain.tld'