Tagged Questions

7
votes
4answers
4k views

How do I set up my Ubuntu VPS to send outgoing mail?

My VPS provider (Slicehost) doesn't provide an SMTP server. I use Google Apps to send and receive mail for my domains, but I want to be able to programmatically send e-mail. I've been Googling this ...
3
votes
2answers
218 views

What exactly does an MTA?

This question got me thinking, and I now realize that I don't know nothing about the internals of MTAs. What exactly does an MTA? Everything after the SMTP protocol seems like dark magic to me. Lets ...
2
votes
5answers
147 views

What are All the Ways a Programmer Could use PHP to Send an Email?

I'm looking for a list of built in PHP functions that a programmer could use to send an email. The obvious answer here is mail(), but I'm also looking for a list of functions someone might use to ...
1
vote
0answers
68 views

How to specify default MTA?

i'm trying to use the MAILTO function in crontab on my mybookworld (it's a nas) I've installed a rather unfamiliar(in think) MTA: esmtp With mutt(console based email client) it works perfectly. But ...
1
vote
3answers
62 views

Security implications of a limited function server

I want to collect certain information from people/devices via email. These emails will never be delivered to anybody, but simply processed on the server. Received emails will be processed - some ...
0
votes
0answers
45 views

postfix: discarding all mails to a specific recipient address

How can I configure Postfix to silently discard (not bounce) all messages to a single, specific destination e-mail address, while still deliver all other mails? The mails in question are bounces ...
0
votes
1answer
48 views

Is it possible to run XAMPP's fake sendmail MTA as a daemon and thus as a standalone MTA?

I want to send mails via XAMPP/PHP. Now I just found that the sendmail.exe delivered with XAMPP only seems to be a fake sendmail. I'm wondering if it can act as a full MTA, so can I run it as a daemon ...
0
votes
1answer
95 views

sending email django with postfix (without an explicit postfix server)

I'd like to emulate the postfix sendmail command in Django where I don't need to explicitly start up a postfix server. For example if I simply enter the following on the command line: sendmail ...
0
votes
0answers
36 views

How do I configure “advanced” or “dynamic” email forwarding for my domain?

I bought a domain, and I'd like to to setup some "advanced" email forwarding. Let's say they send an email to something@mydomain.com. What I'd ideally like it to do is take and append it to my gmail ...
0
votes
2answers
51 views

How and where does SSL signing apply to emails?

I am trying to find out how SSL signing of emails work and if it gets signed server side or MTA side? I know this is a bit vague maybe but any resources to read or documentation would help a lot :D ...
0
votes
5answers
228 views

MTA for receiving mails, in PHP

is there a library/class/code-snippet/etc. that allows me to directly receive mail in php? So that I don't have to run an additional sever in an other process and then have to somehow send the mails ...
0
votes
1answer
181 views

Mail being sent to local domain instead of remote domain

I have a server which hosts mywebsite.com If I try to send mail to info@mywebsite.com, the MTA is trying to send it to a local host (the mail is managed on a different server). How can I fix this?! ...