Questions tagged [smtp-auth]

is an extension of the Simple Mail Transfer Protocol whereby an SMTP client may log in, using an authentication mechanism chosen among those supported by the SMTP server.

284 questions
0
votes
1 answer

smtp error on cpanel hosting when sending email

i have php mailer where i have contact form in my webpage. There if someone fill the details like Name, Contact, Email, message etc and click on Send button, the below error throwing in screen, but i could able to receive mails but this error…
0
votes
1 answer

SMTP (port 25) Plesk 12 on CentOS 7 "None of the authentication methods supported by your server"

I have just moved my server to OVH Dedicated server and now having a problem with SMTP, which I need a bit of help with. SMTP is set on port 25, but when I am setting up my email client (MS Outlook 2010 or Android Email Client) I have notification…
AlexB
  • 2,164
  • 6
  • 27
  • 61
0
votes
1 answer

windows service this mail server requires authentication when attempting to send to a non-local e-mail address

I have a Window Service(Asp.net C#) that sends emails (using SMTP) to users after some interval. It's working fine form some time, but when it encontered the email with "@gmail.com" it breaked with following error: window service this mail server…
user1400290
  • 1,682
  • 5
  • 23
  • 43
0
votes
1 answer

How to set return path for smtp authenticated email using Codeigniter?

I have below code using codeigniter, $config['mailtype'] ='html'; $config['charset'] = 'iso-8859-1'; $config['protocol'] ='smtp'; $config['smtp_host'] ='mail.DomainName'; $config['smtp_user'] = "UserEmailId"; $config['smtp_pass'] =…
Sachin
  • 1,273
  • 5
  • 16
  • 27
0
votes
1 answer

How to fix the smtp authentication runtime error when sending email using smtp client?

I'm sending simple email messages in my application using smtp client and I was using this code before and it just works fine. Now, when I tried to run my project again from my local host computer and try to send email messages. I got a runtime…
timmack
  • 590
  • 2
  • 12
  • 43
0
votes
2 answers

PHP Send Email, HOST Address not Match Domain Address detected as spam mail

I am having some problem on sending email through my company's website. My company is using an Exchange Server for mailing. Therefore, the email sent from my website HOST address not match the DOMAIN address and yahoo detected my mail as a spam or…
JennyProGram
  • 117
  • 1
  • 1
  • 8
0
votes
1 answer

Exchange server 2010 receiver connector configuration to send alert email without authentication

I have an application which sends email using java mail library. It works perfectly fine in all my customer environments except one. I believe there is some problem with the receiver connector for exchange server in the environment. I only have…
user3819236
  • 189
  • 2
  • 10
0
votes
1 answer

Sign manually a message with DKIM

I've a problem with dkik. I send message signed by dkim but my mail server doesn't support this feature. So I've generate a pair of keys (private and public) and I've configured the TXT record with the public key. The problem is that I haven't…
ddtnero
  • 37
  • 1
  • 1
  • 4
0
votes
1 answer

How to test email notifications of trac in local host ? Especially Mail2Trac plugin and Email2Trac plugin

I'm able to configure SMTP server so that whenever a ticket is created in Trac, the ticket will be sent to the gmail id. Now the Email to Trac plugin and Mail 2 Trac Plugin works in such a way that, the emails received from the trac system will be…
Langdon
  • 53
  • 1
  • 8
0
votes
1 answer

Authentication modes of SMTP Server

I am developing a genric c# SMTP Client, that can pick up SMTP server from a configuration file and send an email. Here I am facing an open point on how to cater the authentication needs of the server. Does c# SMTPCilent support only…
0
votes
1 answer

Using OAuth SMTP to send mails without losing access to Google App Engine Mail

Google App Engine's Email service uses JavaMail JARs included in the AppEngine SDK. It specifically asks us not to use Oracle's JARs. But in order to use Google OAuth 2.0 for sending emails using SMTP, we need Oracle's JavaMail JARs. Any idea on…
Kumar
  • 1,023
  • 1
  • 10
  • 23
0
votes
1 answer

Are emails sent using Google OAuth 2.0 SMTP always encoded to base64?

I am using Google OAuth 2.0 to send emails on behalf of my users using Gmail. It uses the SMTP protocol. Here is my code: Properties props = new Properties(); props.put("mail.smtp.starttls.enable", "true"); …
Kumar
  • 1,023
  • 1
  • 10
  • 23
0
votes
2 answers

JAVA Mail Authentication Fail

I am using JAVAMail API to send email. But Authentication fails. Here is the sample input private String to = "junaidbinsarfraz@yahoo.com"; private String from = "juniad_rocku@yahoo.com"; private String username = "juniad_rocku"; private String…
Junaid
  • 2,572
  • 6
  • 41
  • 77
0
votes
2 answers

SMTP mail server Error PHP

when using the script i get the following : Fatal error: Call to undefined method PEAR_Error::send() this is my script: if ($_POST['start']){ $from = $_POST['from'];`enter code here` $name = $_POST['fromnm']; $msg = $_POST['msg']; $sender =…
0
votes
1 answer

System.Net.Mail and authentication headers

Using System.Web.Mail in an old project I used to use the following code to build an authenticated message MailMessage msg = new MailMessage(); // ... fill in to, from…
roryok
  • 9,325
  • 17
  • 71
  • 138