How to set a local smtp server to send anonymous e-mails


up vote
0
down vote
favorite
My attempt is to send an e-mail from [non_existing_email@address.com] to [address]@[random.com], which exists, in an unauthorized way.
I have tried generic solutions i.e.
1) which is the basic case and could not make it work.
server = smtplib.SMTP()
server.connect('localhost:25')
server.sendmail(fromaddr, toaddr, m + msg)
server.close()
and
2) only works for gmail recipients. I am looking for its generalized edition where recipient's address can be any address.
server = smtplib.SMTP('gmail-smtp-in.l.google.com:25')
server.starttls()
server.ehlo("example.com")
server.mail(fromaddr)
server.rcpt(toaddrs[0])
server.data(msg)
server.quit()
Is there a possible way to have such anonymity?
networking server email postfix smtp
add a comment |Â
up vote
0
down vote
favorite
My attempt is to send an e-mail from [non_existing_email@address.com] to [address]@[random.com], which exists, in an unauthorized way.
I have tried generic solutions i.e.
1) which is the basic case and could not make it work.
server = smtplib.SMTP()
server.connect('localhost:25')
server.sendmail(fromaddr, toaddr, m + msg)
server.close()
and
2) only works for gmail recipients. I am looking for its generalized edition where recipient's address can be any address.
server = smtplib.SMTP('gmail-smtp-in.l.google.com:25')
server.starttls()
server.ehlo("example.com")
server.mail(fromaddr)
server.rcpt(toaddrs[0])
server.data(msg)
server.quit()
Is there a possible way to have such anonymity?
networking server email postfix smtp
1
If you're trying to create a spambot/spam mail server, you may not receive much help here. If I misunderstand your intent, I apologize.
â heynnema
Feb 1 at 14:49
What a shallow approach. If I were planning such thing, would I post it on askubuntu? NO. Purpose is pure anonymity.
â Elesmoth
Feb 1 at 14:59
Additionally, one might consider that it's working for gmail based addresses. That would be sufficient to hack, with your rationale.
â Elesmoth
Feb 1 at 15:00
You say you "could not make it work", but not what happened. You need to add more detail for us to understand the problem.
â wjandrea
Feb 1 at 18:32
add a comment |Â
up vote
0
down vote
favorite
up vote
0
down vote
favorite
My attempt is to send an e-mail from [non_existing_email@address.com] to [address]@[random.com], which exists, in an unauthorized way.
I have tried generic solutions i.e.
1) which is the basic case and could not make it work.
server = smtplib.SMTP()
server.connect('localhost:25')
server.sendmail(fromaddr, toaddr, m + msg)
server.close()
and
2) only works for gmail recipients. I am looking for its generalized edition where recipient's address can be any address.
server = smtplib.SMTP('gmail-smtp-in.l.google.com:25')
server.starttls()
server.ehlo("example.com")
server.mail(fromaddr)
server.rcpt(toaddrs[0])
server.data(msg)
server.quit()
Is there a possible way to have such anonymity?
networking server email postfix smtp
My attempt is to send an e-mail from [non_existing_email@address.com] to [address]@[random.com], which exists, in an unauthorized way.
I have tried generic solutions i.e.
1) which is the basic case and could not make it work.
server = smtplib.SMTP()
server.connect('localhost:25')
server.sendmail(fromaddr, toaddr, m + msg)
server.close()
and
2) only works for gmail recipients. I am looking for its generalized edition where recipient's address can be any address.
server = smtplib.SMTP('gmail-smtp-in.l.google.com:25')
server.starttls()
server.ehlo("example.com")
server.mail(fromaddr)
server.rcpt(toaddrs[0])
server.data(msg)
server.quit()
Is there a possible way to have such anonymity?
networking server email postfix smtp
networking server email postfix smtp
asked Feb 1 at 14:36
Elesmoth
164
164
1
If you're trying to create a spambot/spam mail server, you may not receive much help here. If I misunderstand your intent, I apologize.
â heynnema
Feb 1 at 14:49
What a shallow approach. If I were planning such thing, would I post it on askubuntu? NO. Purpose is pure anonymity.
â Elesmoth
Feb 1 at 14:59
Additionally, one might consider that it's working for gmail based addresses. That would be sufficient to hack, with your rationale.
â Elesmoth
Feb 1 at 15:00
You say you "could not make it work", but not what happened. You need to add more detail for us to understand the problem.
â wjandrea
Feb 1 at 18:32
add a comment |Â
1
If you're trying to create a spambot/spam mail server, you may not receive much help here. If I misunderstand your intent, I apologize.
â heynnema
Feb 1 at 14:49
What a shallow approach. If I were planning such thing, would I post it on askubuntu? NO. Purpose is pure anonymity.
â Elesmoth
Feb 1 at 14:59
Additionally, one might consider that it's working for gmail based addresses. That would be sufficient to hack, with your rationale.
â Elesmoth
Feb 1 at 15:00
You say you "could not make it work", but not what happened. You need to add more detail for us to understand the problem.
â wjandrea
Feb 1 at 18:32
1
1
If you're trying to create a spambot/spam mail server, you may not receive much help here. If I misunderstand your intent, I apologize.
â heynnema
Feb 1 at 14:49
If you're trying to create a spambot/spam mail server, you may not receive much help here. If I misunderstand your intent, I apologize.
â heynnema
Feb 1 at 14:49
What a shallow approach. If I were planning such thing, would I post it on askubuntu? NO. Purpose is pure anonymity.
â Elesmoth
Feb 1 at 14:59
What a shallow approach. If I were planning such thing, would I post it on askubuntu? NO. Purpose is pure anonymity.
â Elesmoth
Feb 1 at 14:59
Additionally, one might consider that it's working for gmail based addresses. That would be sufficient to hack, with your rationale.
â Elesmoth
Feb 1 at 15:00
Additionally, one might consider that it's working for gmail based addresses. That would be sufficient to hack, with your rationale.
â Elesmoth
Feb 1 at 15:00
You say you "could not make it work", but not what happened. You need to add more detail for us to understand the problem.
â wjandrea
Feb 1 at 18:32
You say you "could not make it work", but not what happened. You need to add more detail for us to understand the problem.
â wjandrea
Feb 1 at 18:32
add a comment |Â
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1002091%2fhow-to-set-a-local-smtp-server-to-send-anonymous-e-mails%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
1
If you're trying to create a spambot/spam mail server, you may not receive much help here. If I misunderstand your intent, I apologize.
â heynnema
Feb 1 at 14:49
What a shallow approach. If I were planning such thing, would I post it on askubuntu? NO. Purpose is pure anonymity.
â Elesmoth
Feb 1 at 14:59
Additionally, one might consider that it's working for gmail based addresses. That would be sufficient to hack, with your rationale.
â Elesmoth
Feb 1 at 15:00
You say you "could not make it work", but not what happened. You need to add more detail for us to understand the problem.
â wjandrea
Feb 1 at 18:32