Advertisement
Guest User

Untitled

a guest
Mar 19th, 2023
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 3.14 KB | None | 0 0
  1. drew@ilium~$ echo "Hello there" | msmtp --debug xxxxxxxxxxxxxxxxxxx@gmail.com
  2. ignoring system configuration file /etc/msmtprc: No such file or directory
  3. loaded user configuration file /home/andrew/.msmtprc
  4. falling back to default account
  5. using account default from /home/andrew/.msmtprc
  6. host = smtp.gmail.com
  7. port = 587
  8. source ip = (not set)
  9. proxy host = (not set)
  10. proxy port = 0
  11. timeout = off
  12. protocol = smtp
  13. domain = localhost
  14. auth = choose
  15. user = xxxxxxxxxxxxxxxxxxx@gmail.com
  16. password = *
  17. passwordeval = (not set)
  18. ntlmdomain = (not set)
  19. tls = on
  20. tls_starttls = on
  21. tls_trust_file = /etc/ssl/certs/ca-certificates.crt
  22. tls_crl_file = (not set)
  23. tls_fingerprint = (not set)
  24. tls_key_file = (not set)
  25. tls_cert_file = (not set)
  26. tls_certcheck = on
  27. tls_min_dh_prime_bits = (not set)
  28. tls_priorities = (not set)
  29. auto_from = off
  30. maildomain = (not set)
  31. from = xxxxxxxxxxxxxxxxxxx@gmail.com
  32. add_missing_from_header = on
  33. add_missing_date_header = on
  34. remove_bcc_headers = on
  35. dsn_notify = (not set)
  36. dsn_return = (not set)
  37. logfile = /home/andrew/.msmtp.log
  38. logfile_time_format = (not set)
  39. syslog = (not set)
  40. aliases = (not set)
  41. reading recipients from the command line
  42. <-- 220 smtp.gmail.com ESMTP z15-20020aa791cf000000b005dd65169623sm4234372pfa.190 - gsmtp
  43. --> EHLO localhost
  44. <-- 250-smtp.gmail.com at your service, [60.242.146.221]
  45. <-- 250-SIZE 35882577
  46. <-- 250-8BITMIME
  47. <-- 250-STARTTLS
  48. <-- 250-ENHANCEDSTATUSCODES
  49. <-- 250-PIPELINING
  50. <-- 250-CHUNKING
  51. <-- 250 SMTPUTF8
  52. --> STARTTLS
  53. <-- 220 2.0.0 Ready to start TLS
  54. TLS session parameters:
  55.     (TLS1.3)-(ECDHE-X25519)-(ECDSA-SECP256R1-SHA256)-(AES-256-GCM)
  56. TLS certificate information:
  57.     Owner:
  58.         Common Name: smtp.gmail.com
  59.     Issuer:
  60.         Common Name: GTS CA 1C3
  61.         Organization: Google Trust Services LLC
  62.         Country: US
  63.     Validity:
  64.         Activation time: Thu 02 Mar 2023 15:22:24
  65.         Expiration time: Thu 25 May 2023 14:22:23
  66.     Fingerprints:
  67.         SHA256: 96:E0:5B:72:0D:E7:5D:B4:50:8D:83:2D:7D:3B:6E:61:D3:BF:6A:09:9C:AA:6A:37:6E:7D:4C:29:5C:CB:E3:77
  68.         SHA1 (deprecated): B3:FB:FA:39:09:17:68:51:2B:C4:2B:9C:0C:71:80:9E:33:09:55:3B
  69. --> EHLO localhost
  70. <-- 250-smtp.gmail.com at your service, [60.242.146.221]
  71. <-- 250-SIZE 35882577
  72. <-- 250-8BITMIME
  73. <-- 250-AUTH LOGIN PLAIN XOAUTH2 PLAIN-CLIENTTOKEN OAUTHBEARER XOAUTH
  74. <-- 250-ENHANCEDSTATUSCODES
  75. <-- 250-PIPELINING
  76. <-- 250-CHUNKING
  77. <-- 250 SMTPUTF8
  78. --> AUTH PLAIN AGFuZHJldy5kYXZpZC5zdHJvbmdAZ21haWwuY29tAHFybnR1amlkdWVjZmV6anc=
  79. <-- 235 2.7.0 Accepted
  80. --> MAIL FROM:<xxxxxxxxxxxxxxxxxxx@gmail.com>
  81. --> RCPT TO:<xxxxxxxxxxxxxxxxxxx@gmail.com>
  82. --> DATA
  83. <-- 250 2.1.0 OK z15-20020aa791cf000000b005dd65169623sm4234372pfa.190 - gsmtp
  84. <-- 250 2.1.5 OK z15-20020aa791cf000000b005dd65169623sm4234372pfa.190 - gsmtp
  85. <-- 354  Go ahead z15-20020aa791cf000000b005dd65169623sm4234372pfa.190 - gsmtp
  86. --> From: xxxxxxxxxxxxxxxxxxx@gmail.com
  87. --> Date: Sun, 19 Mar 2023 19:32:22 +1100
  88. --> Hello there
  89. --> .
  90. <-- 250 2.0.0 OK  1679214769 z15-20020aa791cf000000b005dd65169623sm4234372pfa.190 - gsmtp
  91. --> QUIT
  92. <-- 221 2.0.0 closing connection z15-20020aa791cf000000b005dd65169623sm4234372pfa.190 - gsmtp
  93. andrew@ilium~$
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement