• [email Tutorial] Create your own and free of charge email Network in less than 10 minutes

    From Stefan Claas@stefan@mailchuck.com to alt.privacy.anon-server,alt.privacy,alt.cypherpunks on Sunday, May 18, 2025 22:11:20
    From Newsgroup: alt.privacy

    Hi all,

    This little tutorial explains you how to run your own email
    infrastructure for family and friends, without paying a dime.

    No email privacy provider accounts required.
    No own Domain required.
    No VPS required.
    No postfix set-up required.
    No pop3,IMAP required.

    Requirements:

    1. Tor Expert Bundle - https://www.torproject.org/download/tor/
    2. OpenSSL - https://slproweb.com/products/Win32OpenSSL.html>
    3. Mini Mailer - https://github.com/Ch1ffr3punk/mmg
    4. smtpdump - https://github.com/Ch1ffr3punk/smtpdump

    Step 1. First we create a Tor Hidden Service. For that go in your
    tor.exe folder and edit the torrc file and put two lines
    in it:

    HiddenServiceDir C:/Users/xxxxxx/Desktop/xxxxx/tor/hidden_service/
    HiddenServicePort 2525 127.0.0.1:2525

    Restart tor.exe and you will find a hostname file with the
    .onion URL in your hidden_service folder.

    Step 2. Create TLS certificates for smtpdump:

    openssl req -nodes -new -x509 -keyout key.pem -out cert.pem

    Step 3. Run smtpdump.exe with the following parameters:

    C:\Users\xxxxx\Desktop>smtpdump -debug -cert keys/cert.pem -key keys/key.pem -tls13 -output inbox

    Where, in this case, the keys folder contains the certs and the
    inbox folder is for incomming emails.

    Step 4. Configure Mini Mailer.

    For each family member or friend, co-worker etc. you have to create
    a config file and a template.

    A config file may look like this:

    SMTP Host fswlpxkp6xdrwrcu3dmby4lwv4z22bep32s3f3ffrua3x4bmvdyhg2ad.onion
    SMTP Port 2525
    SOCKS5 Port 9050

    A template may look like this:

    From: pollux@fswlpxkp6xdrwrcu3dmby4lwv4z22bep32s3f3ffrua3x4bmvdyhg2ad.onion
    To: castor@fswlpxkp6xdrwrcu3dmby4lwv4z22bep32s3f3ffrua3x4bmvdyhg2ad.onion
    Subject: whatever

    Your message goes here.

    Step 5. Sample Session output from smtpdump:

    C:\Users\xxxxx\Desktop>smtpdump -debug -cert keys/cert.pem -key keys/key.pem -tls13 -output inbox
    2025/05/18 21:29:26 Enabled TLS support
    2025/05/18 21:29:26 Minimum TLSv1.3 accepted
    2025/05/18 21:29:26 Listening on "127.0.0.1:2525" ...
    220 iria SMTPDump ESMTP Service ready
    EHLO localhost
    250-iria greets localhost
    250-SIZE 0
    250-STARTTLS
    250-AUTH CRAM-MD5
    250 ENHANCEDSTATUSCODES
    STARTTLS
    220 2.0.0 Ready to start TLS
    EHLO localhost
    250-iria greets localhost
    250-SIZE 0
    250-AUTH CRAM-MD5 LOGIN PLAIN
    250 ENHANCEDSTATUSCODES
    MAIL FROM:<pollux@fswlpxkp6xdrwrcu3dmby4lwv4z22bep32s3f3ffrua3x4bmvdyhg2ad.onion>
    250 2.1.0 Ok
    RCPT TO:<castor@fswlpxkp6xdrwrcu3dmby4lwv4z22bep32s3f3ffrua3x4bmvdyhg2ad.onion>
    2025/05/18 21:32:17 [RCPT] "pollux@fswlpxkp6xdrwrcu3dmby4lwv4z22bep32s3f3ffrua3x4bmvdyhg2ad.onion" => "castor@fswlpxkp6xdrwrcu3dmby4lwv4z22bep32s3f3ffrua3x4bmvdyhg2ad.onion"
    250 2.1.5 Ok
    DATA
    354 Start mail input; end with <CR><LF>.<CR><LF>
    250 2.0.0 Ok: queued
    2025/05/18 21:32:18 Received mail from "pollux@fswlpxkp6xdrwrcu3dmby4lwv4z22bep32s3f3ffrua3x4bmvdyhg2ad.onion" with subject "äöüÄÖÜ߀"
    2025/05/18 21:32:18 Wrote "inbox\\1747596738506159900_-3952053490517768965.eml"
    QUIT
    221 2.0.0 iria SMTPDump ESMTP Service closing transmission channel

    The received email looks like this:

    Received: from localhost (kubernetes.docker.internal. [127.0.0.1])
    by iria (SMTPDump) with SMTP
    for <castor@fswlpxkp6xdrwrcu3dmby4lwv4z22bep32s3f3ffrua3x4bmvdyhg2ad.onion>; Sun, 18 May 2025 21:32:18 +0200 (CEST)
    From: pollux@fswlpxkp6xdrwrcu3dmby4lwv4z22bep32s3f3ffrua3x4bmvdyhg2ad.onion
    To: castor@fswlpxkp6xdrwrcu3dmby4lwv4z22bep32s3f3ffrua3x4bmvdyhg2ad.onion Subject: äöüÄÖÜ߀
    Message-ID: <myj85zmjpi.1747596734@jcdui.nd>
    Date: Sun, 18 May 2025 19:32:14 +0000

    As you see, no MIME headers for international characters are needed.

    Hello World! :-)Step 6. That's all. :-) You now have successfully set-up your own email
    service, which is online as long as you do not power-off your PC.

    This way you can be reached, once you come home from school/work.

    If you have a spare Raspberry Pi you can run your own service
    24/7 and ssh into the machine.

    Hope you like this little tutorial and find it useful!

    Best regards
    Stefan
    --- Synchronet 3.21e-Win32 NewsLink 1.2
  • From Anonymous@nobody@yamn.paranoici.org to alt.cypherpunks,alt.privacy,alt.privacy.anon-server on Monday, May 19, 2025 03:25:50
    From Newsgroup: alt.privacy

    Stefan Claas wrote:

    Hi all,

    This little tutorial explains you how to run your own email
    infrastructure for family and friends, without paying a dime.

    No email privacy provider accounts required.
    No own Domain required.
    No VPS required.
    No postfix set-up required.
    No pop3,IMAP required.

    Requirements:

    OmniMix.

    The received email looks like this:

    Received: from localhost (kubernetes.docker.internal. [127.0.0.1])
    by iria (SMTPDump) with SMTP
    for <castor@fswlpxkp6xdrwrcu3dmby4lwv4z22bep32s3f3ffrua3x4bmvdyhg2ad.onion>; Sun, 18 May 2025 21:32:18 +0200 (CEST)
    From: pollux@fswlpxkp6xdrwrcu3dmby4lwv4z22bep32s3f3ffrua3x4bmvdyhg2ad.onion To: castor@fswlpxkp6xdrwrcu3dmby4lwv4z22bep32s3f3ffrua3x4bmvdyhg2ad.onion Subject: äöüÄÖÜߤ
    Message-ID: <myj85zmjpi.1747596734@jcdui.nd>
    Date: Sun, 18 May 2025 19:32:14 +0000

    As you see, no MIME headers for international characters are needed.

    There are multi-byte character sets out there, you laughing stock.
    And beyond that it's inherently foolish to rely on the recipient
    using your default charset.

    BTW, MID <20250414.023758.60358c31@msgid.frell.theremailer.net>
    explains in a few steps how it's really done the easy way within a
    few minutes and without depriving you of your favourite standard
    SMTP/POP3 mail client capable of handling your region's character
    set(s).

    Or you set up a nym account with it, which means state-of-the-art
    protection even against worst imaginable adversaries.

    Best regards

    --- Synchronet 3.21e-Win32 NewsLink 1.2
  • From Stefan Claas@stefan@mailchuck.com to alt.cypherpunks,alt.privacy,alt.privacy.anon-server on Monday, May 19, 2025 07:15:33
    From Newsgroup: alt.privacy

    Anonymous wrote:
    Stefan Claas wrote:

    Hi all,

    This little tutorial explains you how to run your own email
    infrastructure for family and friends, without paying a dime.

    No email privacy provider accounts required.
    No own Domain required.
    No VPS required.
    No postfix set-up required.
    No pop3,IMAP required.

    Requirements:

    OmniMix.

    Oh please, only a handful of Windows users are using Omnimix.

    This tutorial is aimed for the mainstream.

    The received email looks like this:

    Received: from localhost (kubernetes.docker.internal. [127.0.0.1])
    by iria (SMTPDump) with SMTP
    for <castor@fswlpxkp6xdrwrcu3dmby4lwv4z22bep32s3f3ffrua3x4bmvdyhg2ad.onion>; Sun, 18 May 2025 21:32:18 +0200 (CEST)
    From: pollux@fswlpxkp6xdrwrcu3dmby4lwv4z22bep32s3f3ffrua3x4bmvdyhg2ad.onion To: castor@fswlpxkp6xdrwrcu3dmby4lwv4z22bep32s3f3ffrua3x4bmvdyhg2ad.onion Subject: äöüÄÖÜ߀
    Message-ID: <myj85zmjpi.1747596734@jcdui.nd>
    Date: Sun, 18 May 2025 19:32:14 +0000

    As you see, no MIME headers for international characters are needed.

    There are multi-byte character sets out there, you laughing stock.

    And Mini Mailer with smtpdump handles then all perfectly, dummy.

    And beyond that it's inherently foolish to rely on the recipient
    using your default charset.

    See above and test it yourself.

    BTW, MID <20250414.023758.60358c31@msgid.frell.theremailer.net>
    explains in a few steps how it's really done the easy way within a
    few minutes and without depriving you of your favourite standard
    SMTP/POP3 mail client capable of handling your region's character
    set(s).

    Nobody needs third party servers any longer, to rely on.

    Or you set up a nym account with it, which means state-of-the-art
    protection even against worst imaginable adversaries.

    Takes to long and is unpolite for rapid email discussions, because
    people are tired in 2025 of long latency.

    Have fun with your Omnimix rig and third-party servers involved.

    Regards
    Stefan
    --- Synchronet 3.21e-Win32 NewsLink 1.2
  • From Anonymous@nobody@yamn.paranoici.org to alt.cypherpunks,alt.privacy,alt.privacy.anon-server on Monday, May 19, 2025 07:10:51
    From Newsgroup: alt.privacy

    Stefan Claas <stefan@mailchuck.com> wrote:

    Anonymous wrote:
    Stefan Claas wrote:

    Hi all,

    This little tutorial explains you how to run your own email
    infrastructure for family and friends, without paying a dime.

    No email privacy provider accounts required.
    No own Domain required.
    No VPS required.
    No postfix set-up required.
    No pop3,IMAP required.

    Requirements:

    OmniMix.

    Oh please, only a handful of Windows users are using Omnimix.

    I'm running it on Mint.

    --- Synchronet 3.21e-Win32 NewsLink 1.2
  • From Anonymous@nobody@remailer.paranoici.org to alt.cypherpunks,alt.privacy,alt.privacy.anon-server on Monday, May 19, 2025 07:25:53
    From Newsgroup: alt.privacy

    In article <3a1849664742667932eaa48b9f82cc04aeee48eb@i2pn2.org>
    Stefan Claas <stefan@mailchuck.com> wrote:

    Anonymous wrote:
    Stefan Claas wrote:

    Hi all,

    This little tutorial explains you how to run your own email infrastructure for family and friends, without paying a dime.

    No email privacy provider accounts required.
    No own Domain required.
    No VPS required.
    No postfix set-up required.
    No pop3,IMAP required.

    Requirements:

    OmniMix.

    Oh please, only a handful of Windows users are using Omnimix.

    This tutorial is aimed for the mainstream.


    [snip]

    Stefan, ignore the trolls/distractors. They do nothing for the remailer community.

    You, sir, do what you can, and it's greatly appreciated

    --- Synchronet 3.21e-Win32 NewsLink 1.2
  • From Stefan Claas@stefan@mailchuck.com to alt.cypherpunks,alt.privacy,alt.privacy.anon-server on Monday, May 19, 2025 14:59:46
    From Newsgroup: alt.privacy

    Anonymous wrote:
    In article <3a1849664742667932eaa48b9f82cc04aeee48eb@i2pn2.org>
    Stefan Claas <stefan@mailchuck.com> wrote:

    Anonymous wrote:
    Stefan Claas wrote:

    Hi all,

    This little tutorial explains you how to run your own email infrastructure for family and friends, without paying a dime.

    No email privacy provider accounts required.
    No own Domain required.
    No VPS required.
    No postfix set-up required.
    No pop3,IMAP required.

    Requirements:

    OmniMix.

    Oh please, only a handful of Windows users are using Omnimix.

    This tutorial is aimed for the mainstream.


    [snip]

    Stefan, ignore the trolls/distractors. They do nothing for the remailer community.

    You, sir, do what you can, and it's greatly appreciated


    Thank you.

    Regards
    Stefan
    --- Synchronet 3.21e-Win32 NewsLink 1.2
  • From Anonymous User@noreply@dirge.harmsk.com to alt.cypherpunks,alt.privacy,alt.privacy.anon-server on Monday, May 19, 2025 09:48:19
    From Newsgroup: alt.privacy

    Stefan Claas <stefan@mailchuck.com> wrote:

    Have fun with your Omnimix rig and third-party servers involved.

    With 3rd party you mean the tor circuit or what?

    --- Synchronet 3.21e-Win32 NewsLink 1.2
  • From Stefan Claas@stefan@mailchuck.com to alt.cypherpunks,alt.privacy,alt.privacy.anon-server on Monday, May 19, 2025 15:55:40
    From Newsgroup: alt.privacy

    Anonymous User wrote:
    Stefan Claas <stefan@mailchuck.com> wrote:

    Have fun with your Omnimix rig and third-party servers involved.

    With 3rd party you mean the tor circuit or what?


    The involved smtp/pop3/IMAP servers or the nym server.

    Regards
    Stefan
    --- Synchronet 3.21e-Win32 NewsLink 1.2
  • From Anonymous User@noreply@dirge.harmsk.com to alt.cypherpunks,alt.privacy,alt.privacy.anon-server on Monday, May 19, 2025 13:58:37
    From Newsgroup: alt.privacy

    Stefan Claas <stefan@mailchuck.com> wrote:
    Anonymous User wrote:
    Stefan Claas <stefan@mailchuck.com> wrote:

    Have fun with your Omnimix rig and third-party servers involved.

    With 3rd party you mean the tor circuit or what?


    The involved smtp/pop3/IMAP servers or the nym server.

    There are no exteral mail servers involved, as the Omnimix package already includes a Hamster SMTP/POP3/NNTP server, primarily used to hold a local alt.anonymous.messages repository for nym reply extraction. It's an easy
    task to activate that Hamster's mail servers from within the GUI and
    connect its SMTP part with a hidden service of the also present Tor
    subsystem.

    You see, what you present here is old news for an Omnimix user.

    --- Synchronet 3.21e-Win32 NewsLink 1.2
  • From Stefan Claas@stefan@mailchuck.com to alt.cypherpunks,alt.privacy,alt.privacy.anon-server on Monday, May 19, 2025 20:03:19
    From Newsgroup: alt.privacy

    Anonymous User wrote:
    Stefan Claas <stefan@mailchuck.com> wrote:
    Anonymous User wrote:
    Stefan Claas <stefan@mailchuck.com> wrote:

    Have fun with your Omnimix rig and third-party servers involved.

    With 3rd party you mean the tor circuit or what?


    The involved smtp/pop3/IMAP servers or the nym server.

    There are no exteral mail servers involved, as the Omnimix package already includes a Hamster SMTP/POP3/NNTP server, primarily used to hold a local alt.anonymous.messages repository for nym reply extraction. It's an easy task to activate that Hamster's mail servers from within the GUI and
    connect its SMTP part with a hidden service of the also present Tor subsystem.

    You see, what you present here is old news for an Omnimix user.


    And how about the publicity involved smtp servers in a chain,
    or the recipient's mail server, when you write messages?

    Regards
    Stefan
    --- Synchronet 3.21e-Win32 NewsLink 1.2
  • From Fritz Wuehler@fritz@spamexpire-202505.rodent.frell.theremailer.net to alt.cypherpunks,alt.privacy,alt.privacy.anon-server on Monday, May 19, 2025 22:36:13
    From Newsgroup: alt.privacy

    In article <20250519.032550.a4e89a88@yamn.paranoici.org>
    Anonymous <nobody@yamn.paranoici.org> wrote:
    Stefan Claas wrote:

    As you see, no MIME headers for international characters are needed.

    That kind of MIME-free magic is beyond a Taiwanese who's used to use a
    Big5 character set, and me. So it looks as if generations of Internet programmers were wrong thinking MIME encoding is of any importance.

    Or does Class once again demonstrate his own incompetence in dealing
    with MIME encoding by idealizing homebrew ASCII-only crippleware?



    There are multi-byte character sets out there, you laughing stock.
    And beyond that it's inherently foolish to rely on the recipient
    using your default charset.

    And you need MIME encoding to attach files to mail messages.

    --- Synchronet 3.21e-Win32 NewsLink 1.2
  • From Stefan Claas@stefan@mailchuck.com to alt.cypherpunks,alt.privacy,alt.privacy.anon-server on Monday, May 19, 2025 22:44:25
    From Newsgroup: alt.privacy

    Fritz Wuehler wrote:
    In article <20250519.032550.a4e89a88@yamn.paranoici.org>
    Anonymous <nobody@yamn.paranoici.org> wrote:
    Stefan Claas wrote:

    As you see, no MIME headers for international characters are needed.

    That kind of MIME-free magic is beyond a Taiwanese who's used to use a
    Big5 character set, and me. So it looks as if generations of Internet programmers were wrong thinking MIME encoding is of any importance.

    Or does Class once again demonstrate his own incompetence in dealing
    with MIME encoding by idealizing homebrew ASCII-only crippleware?

    Do us all a favor and test it by yourself.

    Regards
    Stefan




    There are multi-byte character sets out there, you laughing stock.
    And beyond that it's inherently foolish to rely on the recipient
    using your default charset.

    And you need MIME encoding to attach files to mail messages.


    --- Synchronet 3.21e-Win32 NewsLink 1.2
  • From Stefan Claas@stefan@mailchuck.com to alt.cypherpunks,alt.privacy,alt.privacy.anon-server on Monday, May 19, 2025 23:04:19
    From Newsgroup: alt.privacy

    Fritz Wuehler wrote:

    There are multi-byte character sets out there, you laughing stock.
    And beyond that it's inherently foolish to rely on the recipient
    using your default charset.

    And you need MIME encoding to attach files to mail messages.

    For beginners, use base64+ from me, without any MIME 1.0 headers.

    https://github.com/Ch1ffr3punk/base64-plus

    Regards
    Stefan



    --- Synchronet 3.21e-Win32 NewsLink 1.2
  • From Anonymous User@noreply@dirge.harmsk.com to alt.cypherpunks,alt.privacy,alt.privacy.anon-server on Monday, May 19, 2025 18:13:53
    From Newsgroup: alt.privacy

    Stefan Claas <stefan@mailchuck.com> wrote:
    Anonymous User wrote:
    Stefan Claas <stefan@mailchuck.com> wrote:
    Anonymous User wrote:
    Stefan Claas <stefan@mailchuck.com> wrote:

    Have fun with your Omnimix rig and third-party servers involved.

    With 3rd party you mean the tor circuit or what?


    The involved smtp/pop3/IMAP servers or the nym server.

    There are no exteral mail servers involved, as the Omnimix package already >> includes a Hamster SMTP/POP3/NNTP server, primarily used to hold a local
    alt.anonymous.messages repository for nym reply extraction. It's an easy
    task to activate that Hamster's mail servers from within the GUI and
    connect its SMTP part with a hidden service of the also present Tor
    subsystem.

    You see, what you present here is old news for an Omnimix user.


    And how about the publicity involved smtp servers in a chain,

    What?

    or the recipient's mail server, when you write messages?

    What's your point? There isn't any network activity related to me
    entering messages into my mail client. The transmission starts when I
    click the Send button. Then the client uploads the message to OM and
    holds the line until OM finishes its delivery to the recipient's Hamster
    server through the Tor network.

    --- Synchronet 3.21e-Win32 NewsLink 1.2
  • From Anonymous@nobody@yamn.paranoici.org to alt.cypherpunks,alt.privacy,alt.privacy.anon-server on Monday, May 19, 2025 23:05:58
    From Newsgroup: alt.privacy

    Stefan Claas <stefan@mailchuck.com> wrote:
    Fritz Wuehler wrote:

    There are multi-byte character sets out there, you laughing stock.
    And beyond that it's inherently foolish to rely on the recipient
    using your default charset.

    And you need MIME encoding to attach files to mail messages.

    For beginners, use base64+ from me, without any MIME 1.0 headers.

    https://github.com/Ch1ffr3punk/base64-plus

    Take your meds, Stefen!

    --- Synchronet 3.21e-Win32 NewsLink 1.2
  • From Fritz Wuehler@fritz@spamexpire-202505.rodent.frell.theremailer.net to alt.cypherpunks,alt.privacy,alt.privacy.anon-server on Tuesday, May 20, 2025 01:09:43
    From Newsgroup: alt.privacy

    In article <5a30bad7e6175153eceedee9b25f02a8bb56cc01@i2pn2.org>
    Stefan Claas wrote:
    Fritz Wuehler wrote:

    There are multi-byte character sets out there, you laughing stock.
    And beyond that it's inherently foolish to rely on the recipient
    using your default charset.

    And you need MIME encoding to attach files to mail messages.

    For beginners, use base64+ from me, without any MIME 1.0 headers.

    https://github.com/Ch1ffr3punk/base64-plus

    Regards
    Stefan



    So your message header contains a MIME-Version line
    without any further MIME entries!? Very smart! LOL!

    --- Synchronet 3.21e-Win32 NewsLink 1.2
  • From Nomen Nescio@nobody@dizum.com to alt.cypherpunks,alt.privacy,alt.privacy.anon-server on Tuesday, May 20, 2025 02:13:07
    From Newsgroup: alt.privacy

    On Mon, 19 May 2025 20:03:19 +0200, Stefan Claas wrote:
    Anonymous User wrote:
    Stefan Claas <stefan@mailchuck.com> wrote:
    Anonymous User wrote:
    Stefan Claas <stefan@mailchuck.com> wrote:

    Have fun with your Omnimix rig and third-party servers involved.

    With 3rd party you mean the tor circuit or what?


    The involved smtp/pop3/IMAP servers or the nym server.

    There are no exteral mail servers involved, as the Omnimix package already >> includes a Hamster SMTP/POP3/NNTP server, primarily used to hold a local
    alt.anonymous.messages repository for nym reply extraction. It's an easy
    task to activate that Hamster's mail servers from within the GUI and
    connect its SMTP part with a hidden service of the also present Tor
    subsystem.

    You see, what you present here is old news for an Omnimix user.


    And how about the publicity involved smtp servers in a chain,
    or the recipient's mail server, when you write messages?

    Let me intervene here and explain this special "TorMail" case:

    Mail client: Message creation
    |
    v Local SMTP port
    OmniMix: Header filtering and sorting
    |
    v Local SOCKS port
    Tor gateway
    |
    v Internet --------------------
    Sender's Tor entry node
    v
    v Up to 8 further hops
    v
    Tor rendezvous point
    v
    v Up to 8 further hops
    v
    Recipient's Tor entry node
    | Internet --------------------
    v
    Tor gateway's Hidden Service
    |
    v Local SMTP port
    Hamster: Mail storage
    ^ Local POP3 port (asynchronous)
    |
    Mail client

    A packet filter only allows the aforementioned local connections.
    Except for both Tor instances all external connections are blocked.

    --- Synchronet 3.21e-Win32 NewsLink 1.2
  • From Anonymous@nobody@yamn.paranoici.org to alt.cypherpunks,alt.privacy,alt.privacy.anon-server on Tuesday, May 20, 2025 00:20:59
    From Newsgroup: alt.privacy

    As you see, no MIME headers for international characters are needed.

    Hello World! :-)Step 6. That's all. :-) You now have successfully
    set-up >your own email
    service, which is online as long as you do not power-off your
    PC.

    This way you can be reached, once you come home from
    school/work.

    I'm retired. You left me out. The above should read:

    "This way you can be reached, once you come home from
    school/work/beach."

    --- Synchronet 3.21e-Win32 NewsLink 1.2
  • From Anonymous@nobody@remailer.paranoici.org to alt.cypherpunks,alt.privacy,alt.privacy.anon-server on Tuesday, May 20, 2025 02:46:19
    From Newsgroup: alt.privacy

    In article <20250519.230558.4f55799e@yamn.paranoici.org>
    Anonymous <nobody@yamn.paranoici.org> wrote:

    Stefan Claas <stefan@mailchuck.com> wrote:
    Fritz Wuehler wrote:

    There are multi-byte character sets out there, you laughing stock.
    And beyond that it's inherently foolish to rely on the recipient
    using your default charset.

    And you need MIME encoding to attach files to mail messages.

    For beginners, use base64+ from me, without any MIME 1.0 headers.

    https://github.com/Ch1ffr3punk/base64-plus

    Take your meds, Stefen!

    FOAD, troll.

    --- Synchronet 3.21e-Win32 NewsLink 1.2
  • From Fritz Wuehler@fritz@spamexpire-202505.rodent.frell.theremailer.net to alt.cypherpunks,alt.privacy,alt.privacy.anon-server on Tuesday, May 20, 2025 05:56:04
    From Newsgroup: alt.privacy

    In article <329a2004cb27756fe709e2cf8e882762c5b5ccf1@i2pn2.org>
    Stefan Claas <stefan@mailchuck.com> wrote:
    Fritz Wuehler wrote:
    In article <20250519.032550.a4e89a88@yamn.paranoici.org>
    Anonymous <nobody@yamn.paranoici.org> wrote:
    Stefan Claas wrote:

    As you see, no MIME headers for international characters are needed.

    That kind of MIME-free magic is beyond a Taiwanese who's used to use a
    Big5 character set, and me. So it looks as if generations of Internet
    programmers were wrong thinking MIME encoding is of any importance.

    Or does Class once again demonstrate his own incompetence in dealing
    with MIME encoding by idealizing homebrew ASCII-only crippleware?

    Do us all a favor and test it by yourself.

    No. As we're not only interested in your success, but even more in the
    reason why it works you'd better do us all a favour and explain how the recipient of a two byte message knows that those aren't two ASCII
    characters but instead it's one of the more that 13 thousand Chinese
    characters from the 2-byte Big5 character table. Please enlighten us!

    --- Synchronet 3.21e-Win32 NewsLink 1.2
  • From Stefan Claas@stefan@mailchuck.com to alt.cypherpunks,alt.privacy,alt.privacy.anon-server on Tuesday, May 20, 2025 07:22:37
    From Newsgroup: alt.privacy

    Fritz Wuehler wrote:
    In article <329a2004cb27756fe709e2cf8e882762c5b5ccf1@i2pn2.org>
    Stefan Claas <stefan@mailchuck.com> wrote:
    Fritz Wuehler wrote:
    In article <20250519.032550.a4e89a88@yamn.paranoici.org>
    Anonymous <nobody@yamn.paranoici.org> wrote:
    Stefan Claas wrote:

    As you see, no MIME headers for international characters are needed.

    That kind of MIME-free magic is beyond a Taiwanese who's used to use a Big5 character set, and me. So it looks as if generations of Internet programmers were wrong thinking MIME encoding is of any importance.

    Or does Class once again demonstrate his own incompetence in dealing
    with MIME encoding by idealizing homebrew ASCII-only crippleware?

    Do us all a favor and test it by yourself.

    No. As we're not only interested in your success, but even more in the reason why it works you'd better do us all a favour and explain how the recipient of a two byte message knows that those aren't two ASCII
    characters but instead it's one of the more that 13 thousand Chinese characters from the 2-byte Big5 character table. Please enlighten us!

    UTF-8 is the default for modern protocols (HTTP, JSON, etc.).
    Go assumes UTF-8 unless told otherwise (e.g., []byte → string).

    Big5 vs. UTF-8:

    Big5 needs external context (e.g., "this is Big5") to avoid ambiguity
    with ASCII.

    UTF-8 embeds the context in the byte patterns.

    Regards
    Stefan
    --- Synchronet 3.21e-Win32 NewsLink 1.2
  • From anon@noreply@dirge.harmsk.com to alt.cypherpunks,alt.privacy,alt.privacy.anon-server on Tuesday, May 20, 2025 02:19:22
    From Newsgroup: alt.privacy

    On 19 May 2025, Fritz Wuehler <fritz@spamexpire-202505.rodent.frell.theremailer.net> posted some news:20250520.010943.799d277b@msgid.frell.theremailer.net:

    In article <5a30bad7e6175153eceedee9b25f02a8bb56cc01@i2pn2.org>
    Stefan Claas wrote:
    Fritz Wuehler wrote:

    There are multi-byte character sets out there, you laughing stock.
    And beyond that it's inherently foolish to rely on the recipient
    using your default charset.

    And you need MIME encoding to attach files to mail messages.

    For beginners, use base64+ from me, without any MIME 1.0 headers.

    https://github.com/Ch1ffr3punk/base64-plus

    Regards
    Stefan



    So your message header contains a MIME-Version line
    without any further MIME entries!? Very smart! LOL!

    It's just extra lines. Who needs that?
    --- Synchronet 3.21e-Win32 NewsLink 1.2
  • From Nomen Nescio@nobody@dizum.com to alt.cypherpunks,alt.privacy,alt.privacy.anon-server on Tuesday, May 20, 2025 10:38:29
    From Newsgroup: alt.privacy

    anon <noreply@dirge.harmsk.com> wrote:
    On 19 May 2025, Fritz Wuehler <fritz@spamexpire-202505.rodent.frell.theremailer.net> posted some news:20250520.010943.799d277b@msgid.frell.theremailer.net:

    In article <5a30bad7e6175153eceedee9b25f02a8bb56cc01@i2pn2.org>
    Stefan Claas wrote:
    Fritz Wuehler wrote:

    There are multi-byte character sets out there, you laughing stock.
    And beyond that it's inherently foolish to rely on the recipient
    using your default charset.

    And you need MIME encoding to attach files to mail messages.

    For beginners, use base64+ from me, without any MIME 1.0 headers.

    https://github.com/Ch1ffr3punk/base64-plus

    Regards
    Stefan



    So your message header contains a MIME-Version line
    without any further MIME entries!? Very smart! LOL!

    It's just extra lines. Who needs that?

    This group more and more becomes a joke, a monkey house where standards
    no longer play any role. We have to get rid of these stoned buffoons.

    --- Synchronet 3.21e-Win32 NewsLink 1.2
  • From Anonymous@nobody@yamn.paranoici.org to alt.cypherpunks,alt.privacy,alt.privacy.anon-server on Tuesday, May 20, 2025 10:06:02
    From Newsgroup: alt.privacy

    Stefan Claas <stefan@mailchuck.com> wrote:
    Fritz Wuehler wrote:
    In article <329a2004cb27756fe709e2cf8e882762c5b5ccf1@i2pn2.org>
    Stefan Claas <stefan@mailchuck.com> wrote:
    Fritz Wuehler wrote:
    In article <20250519.032550.a4e89a88@yamn.paranoici.org>
    Anonymous <nobody@yamn.paranoici.org> wrote:
    Stefan Claas wrote:

    As you see, no MIME headers for international characters are needed. >> > >
    That kind of MIME-free magic is beyond a Taiwanese who's used to use a >> > > Big5 character set, and me. So it looks as if generations of Internet >> > > programmers were wrong thinking MIME encoding is of any importance.

    Or does Class once again demonstrate his own incompetence in dealing
    with MIME encoding by idealizing homebrew ASCII-only crippleware?

    Do us all a favor and test it by yourself.

    No. As we're not only interested in your success, but even more in the
    reason why it works you'd better do us all a favour and explain how the
    recipient of a two byte message knows that those aren't two ASCII
    characters but instead it's one of the more that 13 thousand Chinese
    characters from the 2-byte Big5 character table. Please enlighten us!

    UTF-8 is the default for modern protocols (HTTP, JSON, etc.).
    Go assumes UTF-8 unless told otherwise (e.g., []byte ? string).

    Big5 vs. UTF-8:

    Big5 needs external context (e.g., "this is Big5") to avoid ambiguity
    with ASCII.

    UTF-8 embeds the context in the byte patterns.

    In your initial posting you wrote:

    | This little tutorial explains you how to run your own email
    | infrastructure for family and friends, without paying a dime.

    But to take UTF-8 encoding for granted is far from email standards. To
    make it short you set up your own communication infrastructure following
    your self-knitted rules, which is ok. But please don't call the result
    *email* which it definitely isn't as it severely violates RFCs!

    --- Synchronet 3.21e-Win32 NewsLink 1.2
  • From Stefan Claas@stefan@mailchuck.com to alt.cypherpunks,alt.privacy,alt.privacy.anon-server on Tuesday, May 20, 2025 12:16:46
    From Newsgroup: alt.privacy

    Anonymous wrote:
    Stefan Claas <stefan@mailchuck.com> wrote:
    Fritz Wuehler wrote:
    In article <329a2004cb27756fe709e2cf8e882762c5b5ccf1@i2pn2.org>
    Stefan Claas <stefan@mailchuck.com> wrote:
    Fritz Wuehler wrote:
    In article <20250519.032550.a4e89a88@yamn.paranoici.org>
    Anonymous <nobody@yamn.paranoici.org> wrote:
    Stefan Claas wrote:

    As you see, no MIME headers for international characters are needed.

    That kind of MIME-free magic is beyond a Taiwanese who's used to use a
    Big5 character set, and me. So it looks as if generations of Internet
    programmers were wrong thinking MIME encoding is of any importance.

    Or does Class once again demonstrate his own incompetence in dealing with MIME encoding by idealizing homebrew ASCII-only crippleware?

    Do us all a favor and test it by yourself.

    No. As we're not only interested in your success, but even more in the reason why it works you'd better do us all a favour and explain how the recipient of a two byte message knows that those aren't two ASCII characters but instead it's one of the more that 13 thousand Chinese characters from the 2-byte Big5 character table. Please enlighten us!

    UTF-8 is the default for modern protocols (HTTP, JSON, etc.).
    Go assumes UTF-8 unless told otherwise (e.g., []byte ? string).

    Big5 vs. UTF-8:

    Big5 needs external context (e.g., "this is Big5") to avoid ambiguity
    with ASCII.

    UTF-8 embeds the context in the byte patterns.

    In your initial posting you wrote:

    | This little tutorial explains you how to run your own email
    | infrastructure for family and friends, without paying a dime.

    But to take UTF-8 encoding for granted is far from email standards. To
    make it short you set up your own communication infrastructure following
    your self-knitted rules, which is ok. But please don't call the result *email* which it definitely isn't as it severely violates RFCs!


    It uses the smtp protocol and RFCs can be replaced with newer onces.

    Regards
    Stefan
    --- Synchronet 3.21e-Win32 NewsLink 1.2
  • From Stefan Claas@stefan@mailchuck.com to alt.cypherpunks,alt.privacy,alt.privacy.anon-server on Tuesday, May 20, 2025 12:20:59
    From Newsgroup: alt.privacy

    Nomen Nescio wrote:
    anon <noreply@dirge.harmsk.com> wrote:
    On 19 May 2025, Fritz Wuehler <fritz@spamexpire-202505.rodent.frell.theremailer.net> posted some news:20250520.010943.799d277b@msgid.frell.theremailer.net:

    In article <5a30bad7e6175153eceedee9b25f02a8bb56cc01@i2pn2.org>
    Stefan Claas wrote:
    Fritz Wuehler wrote:

    There are multi-byte character sets out there, you laughing stock. And beyond that it's inherently foolish to rely on the recipient using your default charset.

    And you need MIME encoding to attach files to mail messages.

    For beginners, use base64+ from me, without any MIME 1.0 headers.

    https://github.com/Ch1ffr3punk/base64-plus

    Regards
    Stefan



    So your message header contains a MIME-Version line
    without any further MIME entries!? Very smart! LOL!

    It's just extra lines. Who needs that?

    This group more and more becomes a joke, a monkey house where standards
    no longer play any role. We have to get rid of these stoned buffoons.


    A monkey house, because of replies, such as yours.

    You don't seem to know the word innovation, right?

    Regards
    Stefan
    --- Synchronet 3.21e-Win32 NewsLink 1.2
  • From Anonymous User@noreply@dirge.harmsk.com to alt.cypherpunks,alt.privacy,alt.privacy.anon-server on Tuesday, May 20, 2025 08:34:45
    From Newsgroup: alt.privacy

    Stefan Claas <stefan@mailchuck.com> wrote:

    You don't seem to know the word innovation, right?


    We still fail to find something innovative in your work. Where is it?
    Btw, to disregard standards isn't innovative, it's just plain stupid.

    --- Synchronet 3.21e-Win32 NewsLink 1.2
  • From yeti@yeti@tilde.institute to alt.cypherpunks,alt.privacy,alt.privacy.anon-server on Tuesday, May 20, 2025 13:25:33
    From Newsgroup: alt.privacy

    Anonymous User <noreply@dirge.harmsk.com> wrote:

    Stefan Claas <stefan@mailchuck.com> wrote:

    You don't seem to know the word innovation, right?

    We still fail to find something innovative in your work. Where is it?
    Btw, to disregard standards isn't innovative, it's just plain stupid.

    Thanks.
    --
    "The government you elect is the government you deserve"
    - Thomas Jefferson
    --- Synchronet 3.21e-Win32 NewsLink 1.2
  • From Fritz Wuehler@fritz@spamexpire-202505.rodent.frell.theremailer.net to alt.cypherpunks,alt.privacy,alt.privacy.anon-server on Tuesday, May 20, 2025 14:47:58
    From Newsgroup: alt.privacy

    Stefan Claas wrote:

    It uses the smtp protocol and RFCs can be replaced with newer onces.

    Then do it. But as long as they are the official standard we have to
    abide by them. Otherwise there'll be chaos, which means a breakdown. Or
    are dysfunctional anonymizing systems what you're really aiming at?

    --- Synchronet 3.21e-Win32 NewsLink 1.2
  • From Fritz Wuehler@fritz@spamexpire-202505.rodent.frell.theremailer.net to alt.cypherpunks,alt.privacy,alt.privacy.anon-server on Tuesday, May 20, 2025 14:59:42
    From Newsgroup: alt.privacy

    Stefan Claas <stefan@mailchuck.com> wrote:
    Nomen Nescio wrote:
    anon <noreply@dirge.harmsk.com> wrote:
    On 19 May 2025, Fritz Wuehler <fritz@spamexpire-202505.rodent.frell.theremailer.net> posted some news:20250520.010943.799d277b@msgid.frell.theremailer.net:

    In article <5a30bad7e6175153eceedee9b25f02a8bb56cc01@i2pn2.org>
    Stefan Claas wrote:
    Fritz Wuehler wrote:

    There are multi-byte character sets out there, you laughing stock. >> > > > > > And beyond that it's inherently foolish to rely on the recipient >> > > > > > using your default charset.

    And you need MIME encoding to attach files to mail messages.

    For beginners, use base64+ from me, without any MIME 1.0 headers.

    https://github.com/Ch1ffr3punk/base64-plus

    Regards
    Stefan



    So your message header contains a MIME-Version line
    without any further MIME entries!? Very smart! LOL!

    It's just extra lines. Who needs that?

    This group more and more becomes a joke, a monkey house where standards
    no longer play any role. We have to get rid of these stoned buffoons.


    A monkey house, because of replies, such as yours.

    You don't seem to know the word innovation, right?

    Read about the difference between innovation and regression.

    Anyone remembering the crippled nym systems, not so long ago announced
    as great innovations, which actually were abysmal nonstarters?

    --- Synchronet 3.21e-Win32 NewsLink 1.2
  • From Stefan Claas@stefan@mailchuck.com to alt.cypherpunks,alt.privacy,alt.privacy.anon-server on Tuesday, May 20, 2025 15:20:23
    From Newsgroup: alt.privacy

    Anonymous User wrote:
    Stefan Claas <stefan@mailchuck.com> wrote:

    You don't seem to know the word innovation, right?


    We still fail to find something innovative in your work. Where is it?
    Btw, to disregard standards isn't innovative, it's just plain stupid.


    Isn't it innoavtive to set-up an own free of charge email infrastruture, without relying on third-party servers? I strongly believe it is because
    it frees us to be tied to monitorable third party servers, which even may charge you for using their services.

    Regards
    Stefan
    --- Synchronet 3.21e-Win32 NewsLink 1.2
  • From Stefan Claas@stefan@mailchuck.com to alt.cypherpunks,alt.privacy,alt.privacy.anon-server on Tuesday, May 20, 2025 15:24:00
    From Newsgroup: alt.privacy

    Fritz Wuehler wrote:
    Stefan Claas wrote:

    It uses the smtp protocol and RFCs can be replaced with newer onces.

    Then do it. But as long as they are the official standard we have to
    abide by them. Otherwise there'll be chaos, which means a breakdown. Or
    are dysfunctional anonymizing systems what you're really aiming at?


    What do you mean by dysfunctional anonymizing systems? Tor is used by
    Omnimix users, for example, to hide, because their remailers can't
    protect them properly.

    Regards
    Stefan
    --- Synchronet 3.21e-Win32 NewsLink 1.2
  • From Fritz Wuehler@fritz@spamexpire-202505.rodent.frell.theremailer.net to alt.cypherpunks,alt.privacy,alt.privacy.anon-server on Tuesday, May 20, 2025 23:33:42
    From Newsgroup: alt.privacy

    Stefan Claas <stefan@mailchuck.com> wrote:
    Fritz Wuehler wrote:
    Stefan Claas wrote:

    It uses the smtp protocol and RFCs can be replaced with newer onces.

    Then do it. But as long as they are the official standard we have to
    abide by them. Otherwise there'll be chaos, which means a breakdown. Or
    are dysfunctional anonymizing systems what you're really aiming at?


    What do you mean by dysfunctional anonymizing systems? Tor is used by
    Omnimix users, for example, to hide, because their remailers can't
    protect them properly.


    Stupido, OM uses Tor mainly to hide remailing activities of its users
    from adversaries, whereas the remailer network contributes the most
    reliable anonymization process we have. But it's not surprising that
    you continue to spread fake news here. Who's paying you for this?


    <https://danner-net.de/omom/tutortor.htm>

    OmniMix • Tutorial • Tor

    Tor is a real-time onion-routing system, which thereby allows anonymous Internet communication without any delay. That makes it useful to hide
    your identity especially while surfing the web or using other services,
    that aren't available by mail. But the lack of latency on the other hand substantially increases the chances for an adversary. So for anonymous
    mailing setting up a free email account through Tor is only the second
    best solution.

    Nevertheless OmniMix enables you to benefit from Tor with various kinds
    of communication, which require immediate response, e.g. the retrieval
    of remailer statistics or a stealthy Mixmaster packet delivery to entry remailers. The program is preconfigured to run its own Tor instance and
    use that for every Internet connection it establishes. You have to read
    the 'Configuration' chapter only when problems arise or in case you're interested in what's going on 'under the hood'.

    But there are further services provided by OmniMix based on Tor, which
    you can read about in the 'TorPlus' chapter.

    --- Synchronet 3.21e-Win32 NewsLink 1.2
  • From Stefan Claas@stefan@mailchuck.com to alt.cypherpunks,alt.privacy,alt.privacy.anon-server on Thursday, May 22, 2025 21:53:37
    From Newsgroup: alt.privacy

    Anonymous wrote:
    As you see, no MIME headers for international characters are needed.

    Hello World! :-)Step 6. That's all. :-) You now have successfully
    set-up >your own email
    service, which is online as long as you do not power-off your
    PC.

    This way you can be reached, once you come home from
    school/work.

    I'm retired. You left me out. The above should read:

    "This way you can be reached, once you come home from
    school/work/beach."


    He he, ok. and sorry that I left you out.

    Regards
    Stefan
    --- Synchronet 3.21e-Win32 NewsLink 1.2