Email

Emailadressen mit Unicode verschlüsseln

Im WWW sind mittlerweile immer mehr spezielle email-Spider, die das Web nach E-mail-Addressen durchsuchen und diese zu Werbezwecken fest Speichern. Die meisten Email-Adressen werden dann zu Spamzwecken verkauft. Wenn Du deine Emailadresse gegenüber solchen Spidern schätzen kannst, ist hier nachlesbar. Eine Technik, die die Spider bisher noch nicht erkennen, ist das Verschlässeln der Zeichen durch die Verwendung des UniCodes. Dabei werden die Zeichen einer Emailadresse in die des UniCodes umgewandelt. Wichtig ist, das auch das “mailto:” mit umgewandelt wird, damit der Spider nicht einmal erkennt, was das für ein Link ist. Normaler HTML Quelltext: <a href="mailto:[email protected]">E-Mail</a> Quelltext mit UniCode: <a href=" &#109;&#97;&#105;&#108; &#116;&#111;&#58;&#110;&#97; &#109;&#101;&#64;&#97; &#100;&#114;&#101;&#115;&#115; &#101;&#46;&#99;&#111;&#109;"> Hyperlink Text</a> Das “mailto:” sieht standardmäßig so aus: &#109;&#97;&#105;&#108;&#116;&#111;&#58; Der UniCode für das @-Zeichen ist: &#64; Hier nun das ABC, Zahlen und erlaubte Sonderzeichen in UniCode übersetzt, sodass Sie ihre Email-Adresse verschlüsseln können: a = a b = b c = c d = d e = e f = f g = g h = h i = i j = j k = k l = l m = m n = n o = o p = p q = q r = r s = s t = t u = u v = v w = w x = x y = y z = z 0 = 0 1 = 1 2 = 2 3 = 3 4 = 4 5 = 5 6 = 6 7 = 7 8 = 8 9 = 9 - = - _ = _

Continue reading

HowTo - Linux Mail Server - Postfix

If you want to send or receive an email you should have a mail server capable of sending and receiving mail across the Internet, in this post we will discuss Linux mail server and how SMTP protocol (the standard protocol for mail transport across the internet) works as well as other mail-related protocols, like Post Office Protocol (POP) and Internet Message Access Protocol (IMAP) and the relationship between them. Linux SMTP Mail Server SMTP (Simple Mail Transfer Protocol) defines how a mail is sent from one host to another, it does not define how the mail should be stored or how it is displayed, and it is also system independent, which means the sender and receiver could have different operating systems. SMTP requires only that a server is able to send straight ASCII text to another server, and this is done by connecting to the server on port 25 which is the standard SMTP port. Most Linux distros today are shipped with two of the most common implementation of SMTP which are sendmail and postfix. Sendmail is a popular open source mail server implementation used by many Linux distros, but it has a little complex design and less secured.

Continue reading