|
How to find ip address of email sender of yahoo mail or gmail?
Started by S.Mehdi on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
Looking at the mail headers, you can see who sent it and the host IP, but sender IP to track down a spammer or something similar - better report the email address directly to yahoo or gmail only aproximately geo-locate the ....
You can't.
|
|
Is there a way to know senders IP address sent in Gmail/Yahoo/Hotmail any mail ?
Thanx
Started by luvboy on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at superuser):
If it was sent through the....
Is there a way to know senders IP address sent in Gmail.
You'll be able to see the MTA's in the delivery chain by viewing the SMTP headers, that's about it .
No, not the original sender's address.
|
|
I am setting up a linux server that I want to send mail independently of our main mailserver (ie. directly). The problem is, when I send mail to an external address, it bounces with the message domain of sender address does not exist . (it is sending ...
Started by Brent on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at serverfault):
# # For the sake of consistency between sender and recipient addresses, # myorigin also specifies this is probably....
How to do it here: http://ubuntu.wordpress.com/2005/09/07/setting-a-smarthost.
If the sender address exists.
|
Ask your Facebook Friends
|
Is it possible to send an Email with only cc or bcc recipients using Mail::Sender? When I try to send an Email without a "to" address, I get the expected return code:
-8 = argument $to empty
Started by cowgod on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Have you tried using '' ?
Does the fake_to parameter work:
fake_to
=> the recipient's address address set the fake_to parameter to some informative, yet bogus, address or to the address of your Mail::Sender; my $....
|
|
I have some code that listens for "announcements" via UDP multicast. I can get the IP address of the sender, but what I really need is the MAC address of the sender (since the IP address can and will change).
Is there an easy way to do this in Python?...
Started by ZebZiggle on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Consider the case where the packet you receive has the IP address of the sender's NATting router? For all the machines along the way, the sender's mac address is completely useless, so why bother the sender's MAC ....
|
|
We run a small courier mail server (courier-esmtpd). It is configured to accept mail from authenticated clients without recipient restrictions and mail from everywhere to local addresses: *(at)mydomain.tld . Now we get some spam mails where the from-address...
Started by Jens Berger on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at serverfault):
Unfortunately, many mail servers that are linux based still have settings... .
Specifying networks where you could potentially 'relay' without authorization.
The SMTP protocol was basically designed before the internet was connected and used the way it is today .
|
|
As per this question I asked previously on Google App Engine, if I have access to all the information in a standard email, not just the From , To , Subject , Body fields, but also all the headers and MIME information, how can I verify that two incoming...
Started by daveslab on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
Update
Based on the context supplied:
I would consider using "Address Extensions" this is where your user ....
There is also looking up the Sender Permitted Framework and DomainKeys, which SpamAssassin it down the line.
From the individual.
|
|
Hi,
Is there a way to specify email AND name for sender and recipient info when using ActionMailer?
Typically you'd do:
@recipients = "#{user.email}" @from = "info@mycompany.com" @subject = "Hi" @content_type = "text/html"
But, I want to specify name ...
Started by Grnbeagle on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Mail.ready_to_send sender = (mail['return-path'] && mail['return-path'].spec) || Array(mail.from).first smtp = Net::SMTP.new(smtp_settings[:address], smtp_settings[:port]) smtp.enable_starttls_auto if smtp |smtp| smtp.sendmail(mail.encoded....
|
|
Hi,
If someone sends an email from a gmail account, is it possible for me to trace the emailers IP address or does Google hide it?
Started by Blankman on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at serverfault):
See also How to track the original location of an email... .
If you want to trace the real ip address, the easiest way).
Looking at an email from y'day sent from Gmail I'm not seeing the sender's IP anywhere Hotmail used to enable at one point).
|
|
Hello,
I'm developing a email manager application(like outlook) in C# and I want to do a reply function, but how I can get the email address of the user that sent the email that will be replyed? Thanks.
Started by Nathan Campos on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Is this what you're looking for?
System.Web.Mail.MailMessage.
address you should sent any replies to.
|