Search found 70 matches

by dadamail
Thu Oct 29, 2020 5:04 pm
Forum: Installing Dada Mail
Topic: Installing on Plesk Obsidian?
Replies: 2
Views: 26843

Re: Installing on Plesk Obsidian?

Glad you found the solution :)
by dadamail
Wed Oct 28, 2020 1:12 am
Forum: General Email Sending Problems
Topic: Pro Dada - Can't access program
Replies: 9
Views: 50839

Re: Pro Dada - Can't access program

Could be simply a file/directory permissions issue. The permissions of the directory the, "mail.cgi" file is located (and every directory above it) should be, "755", as should be the permission of the mail.cgi file itself.
by dadamail
Thu Oct 08, 2020 7:09 pm
Forum: General Email Sending Problems
Topic: Corrupted links in emails
Replies: 26
Views: 132183

Re: Corrupted links in emails

SIVC wrote:
Thu Oct 08, 2020 12:49 pm
FYI, in sendmail mode, saving output to a file by the config change you previously suggested, I also tried binary, 8bit & 7bit modes but they all came out as Quoted-Printable on my installation.
Yeah, actually seems like a bug in Dada Mail, when you send a message via Bridge,
by dadamail
Tue Oct 06, 2020 2:50 am
Forum: General Email Sending Problems
Topic: Corrupted links in emails
Replies: 26
Views: 132183

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: 132183

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: 132183

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: 132183

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: 132183

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: 132183

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: 31620

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...