diff options
author | June McEnroe <june@causal.agency> | 2020-01-26 11:33:27 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2020-01-26 11:33:27 -0500 |
commit | 8e15707b728d5bc861d52c901834553dbfe7478f (patch) | |
tree | d18fa396646fed19314c77e661adea5890bc74f3 | |
parent | Implement -a (diff) | |
download | notemap-8e15707b728d5bc861d52c901834553dbfe7478f.tar.gz notemap-8e15707b728d5bc861d52c901834553dbfe7478f.zip |
Add IMAP-related options to manual page
Diffstat (limited to '')
-rw-r--r-- | notemap.1 | 49 |
1 files changed, 45 insertions, 4 deletions
diff --git a/notemap.1 b/notemap.1 index 49a63a8..43467d5 100644 --- a/notemap.1 +++ b/notemap.1 @@ -1,4 +1,4 @@ -.Dd January 25, 2020 +.Dd January 26, 2020 .Dt NOTEMAP 1 .Os . @@ -8,8 +8,12 @@ . .Sh SYNOPSIS .Nm -.Op Fl af +.Op Fl afv +.Op Fl M Ar mailbox +.Op Fl h Ar host .Op Fl m Ar file +.Op Fl p Ar port +.Op Fl u Ar user .Op Ar . .Sh DESCRIPTION @@ -26,14 +30,51 @@ all mapped files are mirrored. .Pp The arguments are as follows: .Bl -tag -width Ds +.It Fl M Ar mailbox +Mirror notes to +.Ar mailbox . +The default is +.Sy Notes . +. .It Fl a -Add notes to the map file. +Add new notes to the map file. . .It Fl f -Overwrite notes which have changed in IMAP. +Overwrite notes which have changed in the mailbox. +. +.It Fl h Ar host +Connect to IMAP on +.Ar host . +The default host is determined +by SRV record lookup on the domain of +.Ar user , +or simply the domain name +if no SRV record exists. +Lookup requires +.Xr dig 1 . . .It Fl m Ar file Set the location of the map file. The default is .Pa .notemap . +. +.It Fl p Ar port +Connect to IMAP on +.Ar port . +If the +.Fl h +option is used, +the default port is +.Sy imaps +(993). +Otherwise, +the port is determined +in the same fashion as the host. +. +.It Fl u Ar user +Log in to IMAP as +.Ar user . +. +.It Fl v +Log IMAP protocol to standard error. .El |