combine journal recpient addresses, allowing bcc users to see their messages

This commit is contained in:
SJ
2012-10-05 14:27:03 +02:00
parent d6b0c3def4
commit 79fafcb3fe
8 changed files with 88 additions and 5 deletions

View File

@@ -56,7 +56,7 @@ int is_string_on_list(struct list *list, char *s){
p = list;
while(p != NULL){
if(strcasecmp(p->s, s) == 0) return 1;
if(strcmp(p->s, s) == 0) return 1;
p = p->r;
}