Issue 1298106
Created on 2005-09-21 20:05 by diana_chen23, last changed 2006-01-13 01:49 by richard.
msg2036 |
Author: [hidden] (diana_chen23) |
Date: 2005-09-21 20:05 |
|
This issue related to 1292178 and probably 1281907.
It is possible to get nosy emails from consecutive
changes to an issue, that all repeatedly say "New
submission from admin".
Process:
1) Create issue with blank message. Submit.
2) Modify issue by adding message. Submit.
3) Receive nosy email stating "New Submission"
4) Modify issue by changing a field (no message)
5) Nosy email sent stating "New submission..."
roundupdb.py:
if authid:
if len(self.get(nodeid,'messages')) == 1:
m.append("New submission from
%s%s:"%(authname, authaddr))
I think checking for existence of 1 message is causing
problem, and not checking that issue existed before...
Thanks!
|
msg2037 |
Author: [hidden] (richard) |
Date: 2005-10-07 04:43 |
|
Logged In: YES
user_id=6405
The problem here is that it's very difficult to detect that whether
the issue existed before the message was added.
|
msg2038 |
Author: [hidden] (diana_chen23) |
Date: 2005-10-10 21:33 |
|
Logged In: YES
user_id=1261722
Is this possible?
If history file is empty -or- if history file does not exist(?)
use "New submission..." statement
I am trying to find out how history file is used/accesed in
meantime...
Thanks!
|
msg2039 |
Author: [hidden] (richard) |
Date: 2006-01-13 01:49 |
|
Logged In: YES
user_id=6405
No, this really isn't possible without some sort of yucky,
potentially unreliable hack.
|
|
Date |
User |
Action |
Args |
2005-09-21 20:05:38 | diana_chen23 | create | |
|