aboutsummaryrefslogtreecommitdiffstats
path: root/smtpd/smtp.1
blob: 3cc03844ed11170540cf0d80b46686086452476d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
.\"	$OpenBSD: smtp.1,v 1.7 2018/07/04 08:23:43 jmc Exp $
.\"
.\" Copyright (c) 2018, Eric Faurot <eric@openbsd.org>
.\"
.\" Permission to use, copy, modify, and distribute this software for any
.\" purpose with or without fee is hereby granted, provided that the above
.\" copyright notice and this permission notice appear in all copies.
.\"
.\" THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
.\" WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
.\" MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
.\" ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
.\" WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
.\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
.\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
.\"
.Dd $Mdocdate: July 4 2018 $
.Dt SMTP 1
.Os
.Sh NAME
.Nm smtp
.Nd Simple Mail Transfer Protocol client
.Sh SYNOPSIS
.Nm
.Op Fl Chnv
.Op Fl F Ar from
.Op Fl H Ar helo
.Op Fl s Ar server
.Op Ar recipient ...
.Sh DESCRIPTION
The
.Nm
utility is a Simple Mail Transfer Protocol
.Pq SMTP
client which can be used to run an SMTP transaction against an SMTP server.
.Pp
By default,
.Nm
reads the mail content from the standard input, establishes an SMTP session,
and runs an SMTP transaction for all the specified recipients.
The content is sent unaltered as mail data.
.Pp
The options are as follows:
.Bl -tag -width Ds
.It Fl C
Do not require server certificate to be valid.
.It Fl F Ar from
Set the return-path (MAIL FROM) for the SMTP transaction.
Default to the current username.
.It Fl H Ar helo
Define the hostname to advertise (HELO) when establishing the SMTP session.
.It Fl h
Display version and usage.
.It Fl n
Do not actually execute a transaction,
just try to establish an SMTP session and quit.
When this option is given, no message is read from the standard input.
.It Fl s Ar server
Specify the server to connect to and connection parameters.
The format is
.Sm off
.Op Ar proto No :// Op Ar user : pass No @
.Ar host Op : Ar port .
.Sm on
The following protocols are available:
.Pp
.Bl -tag -width "smtp+notls" -compact
.It smtp
Normal SMTP session with opportunistic STARTTLS.
.It smtp+tls
Normal SMTP session with mandatory STARTTLS.
.It smtp+notls
Plain text SMTP session without TLS.
.It lmtp
LMTP session with opportunistic STARTTLS.
.It lmtp+tls
LMTP session with mandatory STARTTLS.
.It lmtp+notls
Plain text LMTP session without TLS.
.It smtps
SMTP session with forced TLS on connection.
.El
.Pp
Defaults to
.Dq smtp://localhost:25 .
.It Fl v
Be more verbose.
This option can be specified multiple times.
.El
.Sh SEE ALSO
.Xr smtpd 8
.Sh HISTORY
The
.Nm
program first appeared in
.Ox 6.4 .