Could you please change your password? Since you just gave it to me in the file
I have actually done just that and put the settings that you mention in the config pm file (attached)
Where?
I'm having trouble seeing where you might have configured the SQL stuff All I found was:
$SUBSCRIBER_DB_TYPE ||= 'PlainText'; $ARCHIVE_DB_TYPE ||= 'Db'; $SETTINGS_DB_TYPE ||= 'Db'; $SESSION_DB_TYPE ||= 'Db'; $BOUNCE_SCORECARD_DB_TYPE ||= 'Db'; $CLICKTHROUGH_DB_TYPE ||= 'Db';
If what you said is true - you're not using an outside config file, you're still not going to be using the SQL backend, unless you change these lines to:
$SUBSCRIBER_DB_TYPE ||= 'SQL'; $ARCHIVE_DB_TYPE ||= 'SQL'; $SETTINGS_DB_TYPE ||= 'SQL'; $SESSION_DB_TYPE ||= 'SQL'; $BOUNCE_SCORECARD_DB_TYPE ||= 'SQL'; $CLICKTHROUGH_DB_TYPE ||= 'SQL';
If you still receive that error, try replacing the, "||=" with, "=", like this:
$SUBSCRIBER_DB_TYPE = 'SQL'; $ARCHIVE_DB_TYPE = 'SQL'; $SETTINGS_DB_TYPE = 'SQL'; $SESSION_DB_TYPE = 'SQL'; $BOUNCE_SCORECARD_DB_TYPE = 'SQL'; $CLICKTHROUGH_DB_TYPE = 'SQL';
And see if that makes things work correctly
You may want to try to do the same with the %SQL_PARAMS variable, where it says something like,
%SQL_PARAMS = (
# a whole bunch of things,
) unless keys %SQL_PARAMS;
Replace,
unless keys %SQL_PARAMS;
with just,
;
Start a new thread, email: dadadev@dadamailproject.com
This is the developer discussion mailing list for Dada Mail.
If you are just looking for support Dada Mail, consult the message boards at:
https://forum.dadamailproject.com
Documentation for Dada Mail:
Specifically, see the Error FAQ:
https://dadamailproject.com/d/FAQ-errors.pod.html
To post to this list, send a message to:
mailto:dadadev@dadamailproject.com
All subscribers of this list may post to the list itself.
Topics that are welcome:
Dada Mail is on Github:
https://github.com/justingit/dada-mail/
If you would like to fork, branch, send over PRs, open up issues, etc.
This Privacy Policy is for this mailing list, and this mailing list only.
Email addresses collection through this mailing list are used explicitly to work within this email discussion list.
We only collect email addresses through our Closed-Loop Opt-In system.
We don't use your email address for any other purpose.
We won't be sharing your email address with any other entity.
Unsubscription can be done at any time. Please contact us at: justin@dadamailproject.com for any help regarding your subscription, including removal from the mailing list.
All mailing list messages sent from us will include a subscription removal link, which will allow you to remove yourself from this mailing list automatically, and permanently.
All consent to use your email address for any other purpose stated at the time of the mailing list subscription will also be revoked upon mailing list removal.