pop3d.8
changeset 43 6903f7870c4c
parent 0 9e2cb1ed20b1
child 44 cd0efa84de3f
equal deleted inserted replaced
42:dcd95d2f3567 43:6903f7870c4c
    18 .Sh NAME
    18 .Sh NAME
    19 .Nm pop3d
    19 .Nm pop3d
    20 .Nd Post Office Protocol (POP3) daemon.
    20 .Nd Post Office Protocol (POP3) daemon.
    21 .Sh SYNOPSIS
    21 .Sh SYNOPSIS
    22 .Nm
    22 .Nm
       
    23 .Op Fl c Ar certfile
    23 .Op Fl d
    24 .Op Fl d
       
    25 .Op Fl k Ar keyfile
    24 .Op Fl p Ar path
    26 .Op Fl p Ar path
    25 .Op Fl t Ar type
    27 .Op Fl t Ar type
    26 .Sh DESCRIPTION
    28 .Sh DESCRIPTION
    27 .Nm
    29 .Nm
    28 daemon implements Post Office Protocol (Version 3) as specified in
    30 daemon implements Post Office Protocol (Version 3) as specified in
    32 binds to 110(POP3), 995(POP3S) ports and operates on local mailboxes on
    34 binds to 110(POP3), 995(POP3S) ports and operates on local mailboxes on
    33 behalf of its remote users.
    35 behalf of its remote users.
    34 .Pp
    36 .Pp
    35 The options are as follows:
    37 The options are as follows:
    36 .Bl -tag -width Ds
    38 .Bl -tag -width Ds
       
    39 .It Fl c Ar certfile
       
    40 Specify the certificate file. Defaults to /etc/ssl/server.crt.
    37 .It Fl d
    41 .It Fl d
    38 Do not daemonize. If this option is specified,
    42 Do not daemonize. If this option is specified,
    39 .Nm
    43 .Nm
    40 will run in foreground and log to
    44 will run in foreground and log to
    41 .Em stderr .
    45 .Em stderr .
       
    46 .It Fl k Ar keyfile
       
    47 Specify the key file. Defaults to /etc/ssl/private.key.
    42 .It Fl p
    48 .It Fl p
    43 Path to the maildrop. Defaults to /var/mail/%u in case of mbox and 
    49 Path to the maildrop. Defaults to /var/mail/%u in case of mbox and
    44 ~/Maildir in case of maildir.
    50 ~/Maildir in case of maildir.
    45 .Nm
    51 .Nm
    46 expands '~' to user's home dir
    52 expands '~' to user's home dir
    47 and '%u' to user's name if specified in the path.
    53 and '%u' to user's name if specified in the path.
    48 .It Fl t
    54 .It Fl t
    49 Specify maildrop type. Options are mbox and maildir. Defaults to mbox.
    55 Specify maildrop type. Options are mbox and maildir. Defaults to mbox.
    50 .El
    56 .El
    51 .Sh FILES
    57 .Sh FILES
    52 .Bl -tag -width "/etc/ssl/private/server.key" -compact
    58 .Bl -tag -width Ds -compact
    53 .It Pa ~/maildir
    59 .It Pa ~/maildir
    54 .It Pa /var/mail/%u
    60 .It Pa /var/mail/%u
    55 User maildrops
    61 User maildrops
    56 .Pp
    62 .El
    57 .It /etc/ssl/server.crt
       
    58 .It /etc/ssl/private/server.key
       
    59 Location of SSL certificate and key
       
    60 .Sh SEE ALSO
    63 .Sh SEE ALSO
    61 .Xr smtpd 8 ,
    64 .Xr smtpd 8 ,
    62 .Xr ssl 8
    65 .Xr ssl 8
    63 .Sh STANDARDS
    66 .Sh STANDARDS
    64 .Rs
    67 .Rs
    80 .%A A. Melnikov
    83 .%A A. Melnikov
    81 .%A C. Newman
    84 .%A C. Newman
    82 .%A M. Yevstifeyev
    85 .%A M. Yevstifeyev
    83 .%D August 2011
    86 .%D August 2011
    84 .%R draft-melnikov-pop3-over-tls-02
    87 .%R draft-melnikov-pop3-over-tls-02
       
    88 .Re
    85 .Sh CAVEATS
    89 .Sh CAVEATS
    86 POP3 authenticates using cleartext passwords on 110(POP3) port.
    90 POP3 authenticates using cleartext passwords on 110(POP3) port.