Is it possible to only send an email based on the value of multiple attributes?, posted by Darren Hollinrake on Mon Mar 9 17:03:38 2015
|
My current setup notifies users if downtime = yes.
[CODE]Email Downtime Yes = user1@xyz.com, user2@xyz.com[/CODE]
|
Re: Is it possible to only send an email based on the value of multiple attributes?, posted by Stefan Ritt on Mon Mar 9 17:24:42 2015
|
[quote="Darren Hollinrake"]My current setup notifies users if downtime = yes.
[CODE]Email Downtime Yes = user1@xyz.com, user2@xyz.com[/CODE]
|
Re: Is it possible to only send an email based on the value of multiple attributes?, posted by Andreas Luedeke on Thu Mar 12 09:53:57 2015
|
[quote="Darren Hollinrake"]My current setup notifies users if downtime = yes.
[CODE]Email Downtime Yes = user1@xyz.com, user2@xyz.com[/CODE]
|
Entry size too large for email notification, posted by Jacky Li on Tue May 19 12:26:39 2015
|
Hi,
I am doing an inline image that is about 2.2 MB. When I do a submit, I got the following message:
Error sending Email via <i>"<email server>"</i>: Entry size too large for email notification. |
Entry size too large for email notification, posted by Jacky Li on Tue May 19 12:27:01 2015
|
Hi,
I am doing an inline image that is about 2.2 MB. When I do a submit, I got the following message:
Error sending Email via <i>"<email server>"</i>: Entry size too large for email notification. |
Re: Entry size too large for email notification, posted by Andreas Luedeke on Tue May 19 16:34:20 2015
|
Hi Jacky,
if I read the source code correctly then the maximum size of a base64 encoded email is hard coded to be 10 MB in elogd.h (recompile
after changing it):
#define MAX_CONTENT_LENGTH 10*1024*1024
But
I think that an 2.2 MB image should easily fit into that.
Andreas
|
Re: Entry size too large for email notification, posted by Stefan Ritt on Fri May 22 13:43:14 2015
|
The size is defined by the variable MAX_CONTENT_LENGTH in elogd.c which is set to 10 MB. But email attachments are encoded in ASCII form, so they take
useually 3-4 times the space of the binary format. If you have problems with large emails, you can use the option "Email Format = 111" which
causes only the names of attachments to be included in email notifications. Users can then still click on the elog link inside the email notification and |
Limited access to an attribute, posted by Michael Cianci on Mon Jun 15 19:38:58 2015
|
Is there a way to limit access to an attribute "Reviewed by" to only supervisors?
Thank you for your help
Mike |