Swaks

Swaks is a featureful, flexible, scriptable, transaction-oriented SMTP test tool written and maintained by John Jetmore. It is free to use and licensed under the GNU GPLv2. Features include:

  • SMTP extensions including TLS, authentication, pipelining, PROXY, PRDR, and XCLIENT
  • Protocols including SMTP, ESMTP, and LMTP
  • Transports including UNIX-domain sockets, internet-domain sockets (IPv4 and IPv6), and pipes to spawned processes
  • Completely scriptable configuration, with option specification via environment variables, configuration files, and command line

The official project page is https://jetmore.org/john/code/swaks/.

Installation

Download newest release from Github.com.

Usage

./swaks [OPTIONS]

Flags

Please run ./swaks --help or check the help file below.

  • ref.txt (77 kb)
  • Examples

    $ ./swaks --to [email protected] --from [email protected] –-server 10.10.10.10
    === Trying 10.10.10.10:25...
    === Connected to 10.10.10.10.
    <-  220 exch-01.offsec.nl ESMTP
     -> EHLO EXCH-01
    <-  250-exch-01.offsec.nl
    <-  250-SIZE 20480000
    <-  250-AUTH LOGIN
    <-  250 HELP
     -> MAIL FROM:<[email protected]>
    <-  250 OK
     -> RCPT TO:<[email protected]>
    <-  250 OK
     -> DATA
    <-  354 OK, send.
     -> Date: Fri, 8 Apr 2022 12:14:14 +0100
     -> To: [email protected]
     -> From: [email protected]
     -> Subject: test Fri, 8 Apr 2022 12:14:14 +0100
     -> Message-Id: <12355.098765433@ABCDEF>
     -> X-Mailer: swaks v20201014.0 jetmore.org/john/code/swaks/
     ->
     -> This is a test mailing
    -> .
    <-  250 Queued (0.000 seconds)
     -> QUIT
    <-  221 goodbye
    === Connection closed with remote host.
    

    To for example insert own body text, use the --body flag.

    swaks -t [email protected] --server 10.10.10.10 --body "This is test body text, you can put whatever you want in here."
    

    URL List