ID |
Date |
Icon |
Author |
Author Email |
Category |
OS |
ELOG Version |
Subject |
1450
|
Thu Oct 13 08:32:20 2005 |
| Stefan Ritt | stefan.ritt@psi.ch | | Windows | 2.5.4 | Re: Trying to remove "mailto:" from the email address |
Matt Kimball wrote: | We are using ver 2.5.4. As users enter new requests into the system, they would like email notifications. I have added the $user_email into a "notifications" section that we created. The email address that gets entered is "mailto:user@domain.com". Is there a way to remove the "mailto:"? Attached is my config file. |
The "mailto:" is there for good reason. After you submit the entry, elogd converts the "mailto:" into
<a href="mailto:user@domain.com">user@domain.com</a>
so the browser shows the email address as a link. If you click it, the browser automatically opens your email client with the email address already in the "To:" field. The same works in the main text body. So if I put "mailto:stefan.ritt@psi.ch", it gets converted automatially to "stefan.ritt@psi.ch", a feature many people rely on.
Now from your request it looks to me like you want email notifications, so you put
Email System CareWare = ..., $user_email
In that case the "mailto:" gets automatically stripped during the email notification, so the user_email gets entered and will be used correctly for the notification. |
594
|
Wed Jul 14 13:31:33 2004 |
| Bartjan Wattel | watt0006@mail.hzeeland.nl | Question | Windows | 2.5.3. | Always suppress email notifications |
Hi - again a configuration question.
How can I suppress all email notifications? The "Suppress default = 2" flag
allows me to always produce a notification, but the flag does not provide
an option to never produce a notification. The flag "Suppress Email on
edit" does help a bit, but still notifications for new messages will be
sent.
I'm looking forward to your fast response... So far your support is
fantastic!
Bartjan Wattel |
596
|
Wed Jul 14 13:58:26 2004 |
| Bartjan Wattel | watt0006@mail.hzeeland.nl | Request | Linux | Windows | 2.5.3. | Request: limit size of attachments |
hi again,
we have been doing a bit of stress testing for Elog. The most important
thing we found is that Elog stops responding when a user uploads a large
attachment (we used a 240 Mb attachment).
Is it possible to add a flag in the configuration file, to specify the
maximum size of an attachment?
Bartjan Wattel |
597
|
Wed Jul 14 16:11:46 2004 |
| Stefan Ritt | stefan.ritt@psi.ch | Question | Windows | 2.5.3. | Re: Always suppress email notifications |
> How can I suppress all email notifications? The "Suppress default = 2" flag
> allows me to always produce a notification, but the flag does not provide
> an option to never produce a notification. The flag "Suppress Email on
> edit" does help a bit, but still notifications for new messages will be
> sent.
Suppress email to users = 1
RTFM |
609
|
Thu Jul 15 22:01:55 2004 |
| Stefan Ritt | stefan.ritt@psi.ch | Request | Linux | Windows | 2.5.3. | Re: Request: limit size of attachments |
> Is it possible to add a flag in the configuration file, to specify the
> maximum size of an attachment?
I implemented a "max content length = xxx" flag, which defaults to 10MB. If an
attachment is larger, an error gets displayed. The problem is that elogd can
only send the error message to the browser *after* it received the whole
request, so it has to "drain" the 240 MB first, which could take quite some
time on a slow connection.
Alternatively, I can cut the connection to the browser immediately, since the
HTTP header contains the content length after the first ~500 bytes, but in
that case the browser only shows a message box "Document contains no data"
which gives the user noe clue of what's wrong.
Anyhow the biggest problem of elog in high stress environments is that it's
single threaded. So if someone issues a search in a large logbook, it could
take some time, in which elog cannot respond to other requests. Maybe I will
find time in the future to make elog multithreaded, but certainly not in the
near future. |
618
|
Tue Jul 27 17:56:56 2004 |
| Ulrich Trüssel | ulrich.truessel@familienhund.ch | Bug report | Windows | 2.5.3 snap | List Dispaly produces wrong output in 2.5.3 built 23.7.04 (snapshot) |
I did not have the following problem in any snapshot before 23.7.04 .
Actually I do not have a possibility to test the snapshot under an other
system than win xp pro sp 1 (fully pached).
Using my logbooks as well as the demo logbook works well under older
snapsgots of 2.5.3 as well as long as the "List Display = <attributes>" is
not used!
Using "List Display = <attributes>" produces an ususal output with the text
field content in the first row and a row title of the first 3 letters.
Ex.:
Attributes = Customername, Customeraddres
List Display = Customername, Customeraddres
Output:
¦Cus¦Customeraddres¦
If no record is in the logbook, only the "Cus" is dispalyed! Removing "List
Display = <attributes>" produces a normal output with same logbook!
By the way: Thnak's for the Format in the entry/edit view!!! |
621
|
Wed Jul 28 14:17:25 2004 |
| Stefan Ritt | stefan.ritt@psi.ch | Bug report | Windows | 2.5.3 snap | Re: List Dispaly produces wrong output in 2.5.3 built 23.7.04 (snapshot) |
> Using "List Display = <attributes>" produces an ususal output with the text
> field content in the first row and a row title of the first 3 letters.
I fixed that problem. Please get the snapshot from July 28th 14:16. |
623
|
Wed Jul 28 16:13:04 2004 |
| Ulrich Trüssel | ulrich.truessel@familienhund.ch | Bug report | Windows | 2.5.3 snap | Re: List Dispaly produces wrong output in 2.5.3 built 23.7.04 (snapshot) |
Thank you very much Stefan!!!
Also the horizontal alignement with "Format = 1" looks much better as before
with standard css files! Really great work!
> > Using "List Display = <attributes>" produces an ususal output with the text
> > field content in the first row and a row title of the first 3 letters.
>
> I fixed that problem. Please get the snapshot from July 28th 14:16. |