Hello,
this morning were reported over 100 "excessive or fatal bounces" for
delivery from mailing list to yahoo, hotmail/live (and few other that
might be hosted) email addresses. This is unusual high and I spotted
several addresses that were active recently and unlikely to have their
email address gone.
Is anyone here aware of similar issues and potential fixes? I guess
yahoo/hotmail servers simply reject the emails sent by mailman of
mailing lists.
Any hint would be appreciated...
Cheers,
Daniel
--
Daniel-Constantin Mierla - http://www.asipto.comhttp://twitter.com/#!/miconda - http://www.linkedin.com/in/miconda
THIS IS AN AUTOMATED MESSAGE, DO NOT REPLY.
The following task has a new comment added:
FS#423 - crash in debugger module (kamailio 4.1.2)
User who did this - Daniel-Constantin Mierla (miconda)
----------
debugger_api.c:1191 is a comment in 4.1 branch, with no recent patch that could have shifted lines.
The core is somehow invalid, a new one should be caught.
----------
More information can be found at the following URL:
http://sip-router.org/tracker/index.php?do=details&task_id=423#comment1423
You are receiving this message because you have requested it from the Flyspray bugtracking system. If you did not expect this message or don't want to receive mails in future, you can change your notification settings at the URL shown above.
THIS IS AN AUTOMATED MESSAGE, DO NOT REPLY.
The following task has a new comment added:
FS#410 - textops: add functions to convert and append multipart bodies.
User who did this - Víctor Seva (linuxmaniac)
----------
Revised patches:
- fix license. Check memory allocation. Return value using str* parameter.
- use str instead of str* for str_append. Remove some commented logs, but the rest are quite nice when devel debugging, at least for me. Fix comments. Negate expression done.
Thanks for reviewing.
----------
One or more files have been attached.
More information can be found at the following URL:
https://sip-router.org/tracker/index.php?do=details&task_id=410#comment1422
You are receiving this message because you have requested it from the Flyspray bugtracking system. If you did not expect this message or don't want to receive mails in future, you can change your notification settings at the URL shown above.
Module: sip-router
Branch: master
Commit: 0dc5f4bcc7c95bffed4855cba537ccf8a1cad876
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=0dc5f4b…
Author: Victor Seva <linuxmaniac(a)torreviejawireless.org>
Committer: Victor Seva <linuxmaniac(a)torreviejawireless.org>
Date: Fri Mar 21 21:52:03 2014 +0100
parser: add internal flag FL_BODY_MULTIPART
This will be set if the body has been converted to multipart/mixed
or a new part has been appended to it. This will trigger the core
to check and fix the boundaries of the body.
---
parser/msg_parser.h | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/parser/msg_parser.h b/parser/msg_parser.h
index 724ebef..f25bec9 100644
--- a/parser/msg_parser.h
+++ b/parser/msg_parser.h
@@ -121,6 +121,7 @@ typedef enum request_method {
#define FL_USE_UAC_TO (1<<14) /* take TO hdr from UAC instead of UAS */
#define FL_TM_RPL_MATCHED (1<<15) /* tm matched reply already */
#define FL_RPL_SUSPENDED (1<<16) /* for async reply processing */
+#define FL_BODY_MULTIPART (1<<17) /* body modified is multipart */
/* WARNING: Value (1 << 28) is temporarily reserved for use in kamailio call_control
* module (flag FL_USE_CALL_CONTROL )! */
THIS IS AN AUTOMATED MESSAGE, DO NOT REPLY.
The following task has a new comment added:
FS#410 - textops: add functions to convert and append multipart bodies.
User who did this - Daniel-Constantin Mierla (miconda)
----------
First patch can be applied. You should do it soon as I have another flag to add in the very near future.
Second patch:
- license has to be bsd, being contribution to core
- has leaks - you have to allocate after you check the parameters. In case of errors, free the previous allocated pointers
- you don't check if result->s allocation returns valid pointer or null
- does it really need to allocate the str*? Shouldn't work with allocating the (str*)->s? The output can be a parameter instead of returned pointer, or eventually a static str variable inside the function. I see append_str() is used twice in the 3rd patch, returned pointer being always freed.
Third patch:
- not completely reviewed, but
- fb and ob are set via append_str(), but only fb and ob are freed, i haven't seen fb->s, ob->s being freed
- quite some number of commented logs, maybe they should removed
- aesthetics:
- preferable to use /**/ for commenting, // is c++ style, although most c compilers are fine with it now
- negate expression in the first IF inside check_boundaries() -- if(msg->msg_flags&FL_BODY_MULTIPART) -- and return immediately if true to avoid useless 'clean:' operations, as most of the traffic will be without mutipart bodies.
----------
More information can be found at the following URL:
https://sip-router.org/tracker/index.php?do=details&task_id=410#comment1421
You are receiving this message because you have requested it from the Flyspray bugtracking system. If you did not expect this message or don't want to receive mails in future, you can change your notification settings at the URL shown above.
THIS IS AN AUTOMATED MESSAGE, DO NOT REPLY.
The following task has a new comment added:
FS#423 - crash in debugger module (kamailio 4.1.2)
User who did this - Ovidiu Sas (osas)
----------
No, it was during normal operation.
The debugger module was loaded, but no modules were activated:
loadmodule "debugger.so"
modparam("debugger", "mod_hash_size", 5)
modparam("debugger", "mod_level_mode", 1)
----------
More information can be found at the following URL:
http://sip-router.org/tracker/index.php?do=details&task_id=423#comment1420
You are receiving this message because you have requested it from the Flyspray bugtracking system. If you did not expect this message or don't want to receive mails in future, you can change your notification settings at the URL shown above.
THIS IS AN AUTOMATED MESSAGE, DO NOT REPLY.
The following task has a new comment added:
FS#424 - zombie dialogs in state 5
User who did this - Daniel-Constantin Mierla (miconda)
----------
Is the BYE sent out and reply for it is coming back? Can you give the logs for the reply handling?
----------
More information can be found at the following URL:
http://sip-router.org/tracker/index.php?do=details&task_id=424#comment1419
You are receiving this message because you have requested it from the Flyspray bugtracking system. If you did not expect this message or don't want to receive mails in future, you can change your notification settings at the URL shown above.