Board index » cppbuilder » Mail security
Asger Jorgensen
![]() CBuilder Developer |
Asger Jorgensen
![]() CBuilder Developer |
Mail security2007-09-13 05:12:17 PM cppbuilder24 Hi there Is there anyway that I can make sure that an email comes from the address in the from field ? And is it be possible for somebody else to send an email where the from field is filled with my email ? Thanks in advance Asger |
Bruce Salzman
![]() CBuilder Developer |
2007-09-13 10:29:36 PM
Re:Mail security
"Asger Jorgensen" < XXXX@XXXXX.COM >wrote in message
QuoteHi there QuoteAnd is it be possible for somebody else to send an email Bruce |
Remy Lebeau (TeamB)
![]() CBuilder Developer |
2007-09-14 01:09:38 AM
Re:Mail security
"Asger Jorgensen" < XXXX@XXXXX.COM >wrote in message
QuoteIs there anyway that I can make sure that an email will at least give you an idea of which ISP it was sent from. Some servers wil also include the IP address of the original client that sent the message. But there is no single direct way to validate the email address of the sender, without access to the server-side logs. QuoteAnd is it be possible for somebody else to send an email {smallsort} |
Asger Jørgensen
![]() CBuilder Developer |
2007-09-15 08:36:30 AM
Re:Mail security
Thanks Bruce and Remy
Not the answer I hoped for, but better to know the truth though.;-) The situation is: I write the sending mail-client and I also write the recieving mail-client and I always know the name of the outgoing mailserver. Can You then give me some advice as to how I can make it so that no one can fake a message without me knowing it ? Thanks in advance Asger |
Remy Lebeau (TeamB)
![]() CBuilder Developer |
2007-09-15 09:08:57 AM
Re:Mail security
"Asger Jørgensen" < XXXX@XXXXX.COM >wrote in message
QuoteCan You then give me some advice as to how I can make send. Otherwise, there is no other way to detect it, as it can happen completely outside of your system. Gambit |
Bob Gonder
![]() CBuilder Developer |
2007-09-15 09:13:43 AM
Re:Mail security
Asger Jørgensen wrote:
QuoteCan You then give me some advice as to how I can make it so that |
Asger Jørgensen
![]() CBuilder Developer |
2007-09-15 12:04:08 PM
Re:Mail security
Thanks Bob
In article < XXXX@XXXXX.COM >, XXXX@XXXXX.COM says... QuoteAsger Jørgensen wrote: Asger |
Asger Jørgensen
![]() CBuilder Developer |
2007-09-15 12:10:01 PM
Re:Mail security
Thanks Remy
In article <46eb31f1$ XXXX@XXXXX.COM >, XXXX@XXXXX.COM says... QuoteThere is no way to prevent faking, and about the only way to detect that it I was thinking more in the line of adding some kind of date to the header or the body that could not be faked, witch I then could check when recieving. But I am a real newbee when it comes to securety, so any advice will be greatly apreciated. Thanks in advance Asger |
Remy Lebeau (TeamB)
![]() CBuilder Developer |
2007-09-15 12:27:15 PM
Re:Mail security
"Asger Jørgensen" < XXXX@XXXXX.COM >wrote in message
QuoteI have many points on the net for both sending and gets delivered as-is. The only way you are going to be able to generate something that you can verify that can't be easily forged is if you use encryption. Gambit |
Remy Lebeau (TeamB)
![]() CBuilder Developer |
2007-09-15 12:30:26 PM
Re:Mail security
"Asger Jørgensen" < XXXX@XXXXX.COM >wrote in message
What is PGP ? PGP = "Pretty Good Privacy" en.wikipedia.org/wiki/Pretty_Good_Privacy Gambit |
Asger Jørgensen
![]() CBuilder Developer |
2007-09-15 02:18:40 PM
Re:Mail security
Thanks Remy
In article <46eb5f74$ XXXX@XXXXX.COM >, XXXX@XXXXX.COM says... QuoteAnything in an email message can be faked. There is a hole in the SMTP one for the day. And istead of relying on the email date I write the date in the subject. The mail client could then download the new keys from a server that required logon Could that work ? I am a little afraid of that encryption stuff it looks very difficult. Thanks in advance Kind regards Asger |
Remy Lebeau (TeamB)
![]() CBuilder Developer |
2007-09-15 03:38:20 PM
Re:Mail security
"Asger Jørgensen" < XXXX@XXXXX.COM >wrote in message
QuoteWhat if I atatch a file that include a key, that changes You don't need an attachment, though. Putting the key in the headers is enough, and is less intrusive. The problem with relying on the date, though, is that it does not handle situations where delivery is delayed a day or more, unless the original date is stored in the message as well. QuoteAnd istead of relying on the email date I write the date QuoteThe mail client could then download the new keys QuoteI am a little afraid of that encryption stuff it looks your own. It will never be as secure. Gambit |
Asger Jørgensen
![]() CBuilder Developer |
2007-09-15 04:35:00 PM
Re:Mail security
Thanks Remy
In article <46eb8c28$ XXXX@XXXXX.COM >, XXXX@XXXXX.COM says... QuoteUse headers for anything that is private to the message that should not be QuoteAnd if the client can't download a key? QuoteNot really. There are plenty of libraries that hide the complexities for Thanks again Kind regards Asger |
Remy Lebeau (TeamB)
![]() CBuilder Developer |
2007-09-16 10:46:40 AM
Re:Mail security
"Asger Jørgensen" < XXXX@XXXXX.COM >wrote in message
QuoteWould that be in the Headers or the ExtraHeaders Gambit |