Set default to default "send in plain testonly"
Set default to default "send in plain testonly"
Is their a way to set the default for all users to emails "send in plain text only"
Re: Set default to default "send in plain testonly"
Unfortunately no. The hard-coded default is defined in a few places in the code.
One workaround is to modify the database directly (maybe put this in a cron script):
So if you put that in a shell script, and have it run every x-amount-of-time, it'll set the default for users who haven't set a yes or no under receiving plaintext emails.
One workaround is to modify the database directly (maybe put this in a cron script):
Code: Select all
insert into xi_usermeta (user_id, keyname, keyvalue)
select user_id, 'email_plaintext', 1
from xi_users xu
where not exists (
select * from xi_usermeta x where x.user_id = xu.user_id and keyname = 'email_plaintext'
);If you didn't get an 8% raise over the course of the pandemic, you took a pay cut.
Discussion of wages is protected speech under the National Labor Relations Act, and no employer can tell you you can't disclose your pay with your fellow employees.
Discussion of wages is protected speech under the National Labor Relations Act, and no employer can tell you you can't disclose your pay with your fellow employees.
Re: Set default to default "send in plain testonly"
Just checking in since we haven't heard from you in a while. Did that solve your problem?
If you didn't get an 8% raise over the course of the pandemic, you took a pay cut.
Discussion of wages is protected speech under the National Labor Relations Act, and no employer can tell you you can't disclose your pay with your fellow employees.
Discussion of wages is protected speech under the National Labor Relations Act, and no employer can tell you you can't disclose your pay with your fellow employees.
Re: Set default to default "send in plain testonly"
Post thank you but I ma not going to touch the database you can close this ticket.
-
scottwilkerson
- DevOps Engineer
- Posts: 19396
- Joined: Tue Nov 15, 2011 3:11 pm
- Location: Nagios Enterprises
- Contact:
Re: Set default to default "send in plain testonly"
Closing threadbtayl wrote:Post thank you but I ma not going to touch the database you can close this ticket.