How to send an anonymous mail via Python script

Joel Goldstick joel.goldstick at gmail.com
Sat Sep 21 12:09:53 EDT 2013


On Sat, Sep 21, 2013 at 6:41 AM, Chris Angelico <rosuav at gmail.com> wrote:

> On Sat, Sep 21, 2013 at 8:15 PM, Νίκος <nikos.gr33k at gmail.com> wrote:
> > On 21/9/2013 1:04 μμ, Chris Angelico wrote:
> >>
> >> On Sat, Sep 21, 2013 at 7:58 PM, Νίκος <nikos.gr33k at gmail.com> wrote:
> >>>
> >>> Can you please tell me what alternation must be made in order to send
> >>> this
> >>> anonymously?
> >>>
> >>> that is my question. There must be a way.
>

Nikos, stop!  There very well may be a way to send spam.  But you need to
understand internet infrastructure, and be more clever than the many people
who do understand the internet infrastructure and don't want to read spam.
You can't do this because, as you have professed in other endless trolling
threads,  you don't like to read or study, you like people to give you
answers.  To me, that is the definition of laziness.  The second reason you
can't do this may be that you just don't want to do any of the things you
ask here.  Evidence of this would be that you repeat the same questions
over and over, ignore the answers, quote other's as supporting your
ruefully annoying wining, and then start a new thread just like the old
thread with one of your many email aliases.  That is the definition of a
troll.

This list is very informative when you disappear for a while.  If your
purpose is to single handedly degrade the experience of dozens of people
with interesting questions, and volunteers who guide and teach others, well
nice job.  If by chance you are just an unfortunate soul with such large
gaps in your self understanding of how rude your behavior here is, you
should know that you are rude. So, stop it




> >>
> >>
> >> No, there isn't. The nearest you could come to anonymous mail would be
> >> sending via a botnet (to hide your IP address) and forging the from
> >> address. So unless you *want* your mail to be flagged as spam and
> >> detested by the entire world, NO THERE IS NO WAY to send it
> >> anonymously.
> >>
> >> ChrisA
> >>
> > How about an anonymous remailer then?
>
> I'm going to spell this out for the benefit of anyone else who's
> reading this, because I know Nikos won't take any notice. This is a
> gross oversimplification, but I'm trying to condense everything into a
> single email.
>
> The internet can't be built on certainties, so it's built on trust.
> Especially with the detection of spam, it's mainly a matter of trust -
> trusting the sending computer, trusting the sending domain, and
> trusting that the email in question really was sent by that domain.
> Most anti-spam measures are aimed at one of those - for instance, SPF
> is all about demonstrating that the sending computer belongs to the
> sending domain, and DKIM is about matching the contents of the email
> to its domain. The receiving MTA has to decide: Do I trust this sender
> enough to accept this email, or will I reject it? As an example, my
> own mail server checks a lot of things, including:
> * How well the sender complies with the SMTP specification (if you
> can't get protocol right, I don't want to talk to you; if you
> deliberately violate protocol to try to conceal yourself, I definitely
> don't want to talk to you)
> * Whether the hostname and IP address match
> * Whether the reverse DNS for the IP address has four numbers in it (a
> common indication of home senders -
> c122-107-147-136.eburwd5.vic.optusnet.com.au looks like a home user);
> this doesn't prevent mail delivery, but it's marked down
> * The SPF record for the sending domain, if it has one
> * Certain source or destination addresses that have been blacklisted
> * Bayesian similarity to emails previously marked as spam
> * A few other details that I won't discuss in public, so you can't
> game the system and send me a pile of spam :)
>
> Some of these checks are "below the waterline" requirements - for
> instance, if you don't say HELO or EHLO at the beginning of your SMTP
> request, I'm not going to accept any mail from you. Others are "above
> the waterline" - I'll still take the mail, but it's more likely to go
> in the junk folder, because I don't trust you that much.
>
> Violating the internet's standards will often mean your mail gets
> rejected. There's a reason for that; trying to hide is usually a bad
> idea. Be honest; establish a domain and a (small) set of IP addresses
> that send its mail, and you can build up a record of trust ("Every
> message I've ever seen from foo.example.com (IP address 203.0.113.54
> as per its SPF record) has been accepted by my users as legitimate, so
> I'm going to assume that this one, from the same domain and IP, is
> legit"). It's not even all that hard to do - just deploy one of the
> well-known mail servers like exim or Postfix, set up an SPF record
> (not actually necessary, but it's so easy and can help so much that I
> think everyone should do it), and let the rest take care of itself.
>
> ChrisA
> --
> https://mail.python.org/mailman/listinfo/python-list
>



-- 
Joel Goldstick
http://joelgoldstick.com
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/python-list/attachments/20130921/5ba75fad/attachment.html>


More information about the Python-list mailing list