diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1999-07-31 17:39:26 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1999-07-31 17:39:26 +0000 |
commit | b755f2928d8099d4a45f2a83479bff9621cf0177 (patch) | |
tree | 22e1b107affd9ab4d70e5f776a9f2b921b820ae9 /fetchmail.man | |
parent | 1c35b63e217f74d1ae66f0f4a44ccc8567ad3214 (diff) | |
download | fetchmail-b755f2928d8099d4a45f2a83479bff9621cf0177.tar.gz fetchmail-b755f2928d8099d4a45f2a83479bff9621cf0177.tar.bz2 fetchmail-b755f2928d8099d4a45f2a83479bff9621cf0177.zip |
Show usernames surrounded by quotes.
svn path=/trunk/; revision=2516
Diffstat (limited to 'fetchmail.man')
-rw-r--r-- | fetchmail.man | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/fetchmail.man b/fetchmail.man index 07a999a9..52771d82 100644 --- a/fetchmail.man +++ b/fetchmail.man @@ -1435,29 +1435,29 @@ Basic format is: Example: .nf - poll pop.provider.net protocol pop3 username jsmith password secret1 + poll pop.provider.net protocol pop3 username "jsmith" password "secret1" .fi .PP Or, using some abbreviations: .nf - poll pop.provider.net proto pop3 user jsmith password secret1 + poll pop.provider.net proto pop3 user "jsmith" password "secret1" .fi .PP Multiple servers may be listed: .nf - poll pop.provider.net proto pop3 user jsmith pass secret1 - poll other.provider.net proto pop2 user John.Smith pass My^Hat + poll pop.provider.net proto pop3 user "jsmith" pass "secret1" + poll other.provider.net proto pop2 user "John.Smith" pass "My^Hat" .fi Here's a version of those two with more whitespace and some noise words: .nf poll pop.provider.net proto pop3 - user jsmith, with password secret1, is jsmith here; + user "jsmith", with password secret1, is "jsmith" here; poll other.provider.net proto pop2: - user John.Smith, with password My^Hat, is John.Smith here; + user "John.Smith", with password "My^Hat", is "John.Smith" here; .fi This version is much easier to read and doesn't cost significantly @@ -1469,7 +1469,7 @@ string in double quotes. Thus: .nf poll mail.provider.net with proto pop3: - user jsmith there has password "u can't krak this" + user "jsmith" there has password "u can't krak this" is jws here and wants mda "/bin/mail" .fi @@ -1480,11 +1480,11 @@ by individual server descriptions. So, you could write: .nf defaults proto pop3 - user jsmith + user "jsmith" poll pop.provider.net - pass secret1 + pass "secret1" poll mail.provider.net - user jjsmith there has password secret2 + user "jjsmith" there has password "secret2" .fi It's possible to specify more than one user per server (this is only @@ -1494,8 +1494,8 @@ in a multi-user entry must include it. Here's an example: .nf poll pop.provider.net proto pop3 port 3111 - user jsmith with pass secret1 is smith here - user jones with pass secret2 is jjones here + user "jsmith" with pass "secret1" is "smith" here + user jones with pass "secret2" is "jjones" here .fi This associates the local username `smith' with the pop.provider.net |