pop3d.8
changeset 0 9e2cb1ed20b1
child 43 6903f7870c4c
equal deleted inserted replaced
-1:000000000000 0:9e2cb1ed20b1
       
     1 .\" Copyright (c) Sunil Nimmagadda <sunil@nimmagadda.net>
       
     2 .\"
       
     3 .\" Permission to use, copy, modify, and distribute this software for any
       
     4 .\" purpose with or without fee is hereby granted, provided that the above
       
     5 .\" copyright notice and this permission notice appear in all copies.
       
     6 .\"
       
     7 .\" THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
       
     8 .\" WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
       
     9 .\" MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
       
    10 .\" ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
       
    11 .\" WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
       
    12 .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
       
    13 .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
       
    14 .\"
       
    15 .Dd $Mdocdate: March 26 2014 $
       
    16 .Dt POP3D 8
       
    17 .Os
       
    18 .Sh NAME
       
    19 .Nm pop3d
       
    20 .Nd Post Office Protocol (POP3) daemon.
       
    21 .Sh SYNOPSIS
       
    22 .Nm
       
    23 .Op Fl d
       
    24 .Op Fl p Ar path
       
    25 .Op Fl t Ar type
       
    26 .Sh DESCRIPTION
       
    27 .Nm
       
    28 daemon implements Post Office Protocol (Version 3) as specified in
       
    29 RFC 1939 as well as POP3S and STARTTLS extensions.
       
    30 .Pp
       
    31 .Nm
       
    32 binds to 110(POP3), 995(POP3S) ports and operates on local mailboxes on
       
    33 behalf of its remote users.
       
    34 .Pp
       
    35 The options are as follows:
       
    36 .Bl -tag -width Ds
       
    37 .It Fl d
       
    38 Do not daemonize. If this option is specified,
       
    39 .Nm
       
    40 will run in foreground and log to
       
    41 .Em stderr .
       
    42 .It Fl p
       
    43 Path to the maildrop. Defaults to /var/mail/%u in case of mbox and 
       
    44 ~/Maildir in case of maildir.
       
    45 .Nm
       
    46 expands '~' to user's home dir
       
    47 and '%u' to user's name if specified in the path.
       
    48 .It Fl t
       
    49 Specify maildrop type. Options are mbox and maildir. Defaults to mbox.
       
    50 .El
       
    51 .Sh FILES
       
    52 .Bl -tag -width "/etc/ssl/private/server.key" -compact
       
    53 .It Pa ~/maildir
       
    54 .It Pa /var/mail/%u
       
    55 User maildrops
       
    56 .Pp
       
    57 .It /etc/ssl/server.crt
       
    58 .It /etc/ssl/private/server.key
       
    59 Location of SSL certificate and key
       
    60 .Sh SEE ALSO
       
    61 .Xr smtpd 8 ,
       
    62 .Xr ssl 8
       
    63 .Sh STANDARDS
       
    64 .Rs
       
    65 .%A J. Myers
       
    66 .%A M. Rose
       
    67 .%D May 1996
       
    68 .%R RFC 1939
       
    69 .%T Post Office Protocol \(en Version 3
       
    70 .Re
       
    71 .Pp
       
    72 .Rs
       
    73 .%A C. Newman
       
    74 .%D June 1999
       
    75 .%R RFC 2595
       
    76 .%T Using TLS with IMAP, POP3 and ACAP
       
    77 .Re
       
    78 .Pp
       
    79 .Rs
       
    80 .%A A. Melnikov
       
    81 .%A C. Newman
       
    82 .%A M. Yevstifeyev
       
    83 .%D August 2011
       
    84 .%R draft-melnikov-pop3-over-tls-02
       
    85 .Sh CAVEATS
       
    86 POP3 authenticates using cleartext passwords on 110(POP3) port.