I am Setting up a mail server in EEM to receive ena Email , iam receiving the following :
smtp_write AUTH LOGIN Y29ycHByaW50
smtp_read 504 5.7.4 Unrecognized authentication type
the config :
-----------------------
event manager environment _mail_rcpt user@mydomain.com
event manager environment _mail_from user1@mydomain.com
event manager environment _mail_domain mail.mydomain.com
event manager environment _mail_smtp user1:password@mydomain.com
event manager session cli username "mail"
event manager applet MAIL
event track 1 state any
action 1.0 info type routername
action 2.0 mail server "$_mail_smtp" to "$_mail_rcpt" from "$_info_routername@$_mail_domain" subject "hello" body "hello"
----------------------------------------
My SMTP gateway is using port 587
Anyone can help ! please
Solved! Go to Solution.
TLS support was added for applets in EEM 4.0 (15.2(2)T and higher). Prior to that, only plain text SMTP is supported. There is no support for TLS with Tcl.
What version of EEM are you using? EEM 3.0 add supported for basic SMTP AUTH using the AUTH LOGIN method (with Base64-encoded username and password). What mechanisms does your server support?
Version 15.0(1r)M15, RELEASE SOFTWARE (fc1)
Cisco 2911 series router
My SMTp server :
Server name: x.outlook.com
Port: 587
Encryption method: TLS
Embedded Event Manager Version 3.20
Component Versions:
eem: (320_rel2)2.0.2
eem-gold: (v320_rel1)1.0.0
eem-call-home: (v320_rel1)1.0.0
Event Detectors:
TLS support was added for applets in EEM 4.0 (15.2(2)T and higher). Prior to that, only plain text SMTP is supported. There is no support for TLS with Tcl.
Thanks Joseph