Search found 67 matches

by dadamail
Tue Oct 06, 2020 2:50 am
Forum: General Email Sending Problems
Topic: Corrupted links in emails
Replies: 26
Views: 131352

Re: Corrupted links in emails

No - Base64 should be available without installing any extra modules - I'll look at that for you. I'm just as surprised - this app has been around for 20+ years now, and this is the first time I've had to investigate this particular issue! Life for the app started with *only* supporting sendmail. Gl...
by dadamail
Sun Oct 04, 2020 5:45 pm
Forum: General Email Sending Problems
Topic: Corrupted links in emails
Replies: 26
Views: 131352

Re: Corrupted links in emails

So according to the RFC linked into one of the Stack Overflow q's: https://tools.ietf.org/html/rfc5321#section-4.5.2 it's the SMTP client who's job it is to double up dots that start on a new line. In your sendmail command case, that would be the sendmail command, so that's where the problem would b...
by dadamail
Sat Oct 03, 2020 3:59 am
Forum: General Email Sending Problems
Topic: Corrupted links in emails
Replies: 26
Views: 131352

Re: Corrupted links in emails

It'll be this for ALL methods. Dada Mail uses the MIME::Entity module to create all the email messages it creates. Here's a one-liner that shows that a single dot and newline will create the correct encoding: perl -MMIME::Entity -e 'print MIME::Entity->build(Encoding => "quoted-printable", Data => "...
by dadamail
Fri Oct 02, 2020 9:34 pm
Forum: General Email Sending Problems
Topic: Corrupted links in emails
Replies: 26
Views: 131352

Re: Corrupted links in emails

Decoded: ........................................................................................................................................................................................................ .............................................................................................
by dadamail
Fri Oct 02, 2020 9:31 pm
Forum: General Email Sending Problems
Topic: Corrupted links in emails
Replies: 26
Views: 131352

Re: Corrupted links in emails

If sending via SMTP, Dada Mail (or the Net::SMTP module that Dada Mail uses to send via SMTP) replaces a lone dot on a line with, =2E . For example, Content-Transfer-Encoding: quoted-printable Content-Disposition: inline MIME-Version: 1.0 Subject: Test ..................................................
by dadamail
Thu Oct 01, 2020 6:20 pm
Forum: General Email Sending Problems
Topic: Corrupted links in emails
Replies: 26
Views: 131352

Re: Corrupted links in emails

sendmail is a command line utility to... send mail. How it works is sort of a black box, but it could inject a message straight into the mail queue, which would be sent out by the mail server (via SMTP), or something similar. It generally doesn't do any encoding or such. This sounds like an issue wi...
by dadamail
Tue Sep 22, 2020 9:04 pm
Forum: Installing Dada Mail
Topic: Moving Dada Mail to Another Server
Replies: 3
Views: 31339

Re: Moving Dada Mail to Another Server

First, here's the guide on how to migrate: https://dadamailproject.com/support/documentation-11_11_3/move_dada_mail.pod.html Boils down to moving the .dada_files directory, moving the, "dada" directrory, and migrating the MySQL database. After that, just follow the upgrade instructions as usual. You...
by dadamail
Fri Sep 11, 2020 6:08 pm
Forum: General Email Sending Problems
Topic: Corrupted links in emails
Replies: 26
Views: 131352

Re: Corrupted links in emails

Sorry to be so picky, but it helps greatly with trying to debug the problem: is there a way to recreate the problem when no layout used (ie: selecting, "don't use a layout". These layouts (the html) do change, and those changes could affect the emails generated. I'm already having trouble simply rec...
by dadamail
Wed Sep 09, 2020 10:23 pm
Forum: General Email Sending Problems
Topic: Corrupted links in emails
Replies: 26
Views: 131352

Re: Corrupted links in emails

If there's a simple test case I can look at, I'll give it another look. If you can let me know what you have set in, Sending: Advanced Options that can also help. I'll say right now, if the message encodings aren't both quoted/printable, change it to that, then see if your problems are still there.
by dadamail
Tue Sep 08, 2020 5:13 am
Forum: General Email Sending Problems
Topic: Corrupted links in emails
Replies: 26
Views: 131352

Re: Corrupted links in emails

(I have yet to recreate the problem)