Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
1k views

Setting up sendgrid for rails..returning Authorization error

The emails now send from my local, but do not send from my box. I am returned this error. Anyone know what this might be? Net::SMTPAuthenticationError (535 5.7.8 Error: authentication failed: ...
1
vote
3answers
1k views

how to send mail in python ssmtp vs smtplib

I need to send email in delbian linux. How to send? I run my server on 256 MB linux box and I heard postfix and sendmail is overkill. Recently I came across the ssmtp, that seems to be an executable, ...
0
votes
0answers
57 views

Does msmtp/ssmtp support sasl security?

http://msmtp.sourceforge.net/doc/msmtprc.txt # Example for a user configuration file # Set default values for all following accounts. defaults tls on tls_trust_file ...
0
votes
1answer
65 views

How to change the sender name of email on Ubuntu

I just installed ssmtp to send email with LAMP on Ubuntu. And a simple script like this: <?php $additional_headers = 'From: someone@testing.com' . "\r\n"; $res = ...
0
votes
1answer
218 views

How to send email using SSMTP through Codeigniter on Ubuntu

I am new to SSMTP and Ubuntu, but I have successfully sent emails using the following command: ssmtp -t < temp_email_file Using PHP in Codeigniter, I'm trying to have my controller run the same ...
0
votes
2answers
314 views

Does a rails production.log store indefinitely?

If it doesn't, what's the half-life of it? It it does, where can find that information? On my server I found a few logs for each of my releases. But they only date back a few days. Specifically, I ...
0
votes
2answers
803 views

Installing sSMTP from SSH

I'm on a Web Hosting Buzz reseller account. They have some very stringent mail sending rules, including blocking of authenticated SMTP socket mail sending using PEAR. It was suggested in WHB forum ...
0
votes
4answers
1k views

mail: failed to open stream: Permission denied?

I get this warning sending mails with php Warning: mail(1) [function.mail]: failed to open stream: Permission denied in /home/... using ssmtp and gmail as smtp PHP 5.3.1 nothing in the logs (no ...
0
votes
1answer
850 views

rails action mailer problem

My application mailer works fine in development on my own machine but on the server it doesn't work the way I want. I know the server is perfectly capable of relaying the emails requested because I ...