Given the type of messages sent quickly one after the other, I removed
the user from both sr-dev and sr-users mailing lists.
Either his email account was hacked or he subscribed for
advertising/spam purposes. If anyone knows him and thinks it is the
first case, notify him.
Cheers,
Daniel
On 17.05.19 14:21, Prakash wrote:
[...]
_______________________________________________
> Kamailio (SER) - Users Mailing List
> sr-users(a)lists.kamailio.org
> https://lists.kamailio.org/cgi-bin/mailman/listinfo/sr-users
--
Daniel-Constantin Mierla -- www.asipto.comwww.twitter.com/miconda -- www.linkedin.com/in/miconda
http://www.doocti.com
+919790776655
Doocti Next Generation CTI for Smarter Sales Teams
http://www.doocti.com
Dear Customer,
Greeting from Tevatel. Hope this mail finds you well.
We are happy to announce the launch of our new product Doocti - Call center connector for crm
What is Doocti?
Doocti is a Computer telephony integration platform that can integrate your communication devices with your Helpdesk, CRM, and Other Key Tools.
Increase agent productivity, improve customer experience and enable personalized service through deep customer insights at the point of interaction.
Features of Doocti
Single click Dial
On-Screen Customer Profile
Build on the Customer Profile
Efficient Call Disposition
Auto Dial
Sticky Agent
Feedback from the clients
Reduce call time by 10-20 seconds per call
Instantly retrieves and screen-pops customer related information
Provides a better and more immediate response to the customers
Offers a more personalized experience to the caller
Dials out automatically and faster with a single mouse click
Handles higher call volumes
Increases first call resolution
Intergrated with
Currently we have associated with more than 20 brands.
Curious to see what's under the hood? Enjoy a detailed look at the Doocti experience in a demo guided by a member of our team. Get a meeting on the calendar today.
mailto:prakash.n@tevatel.com?subject=Need More Information about Doocti Request for a Demo [ mailto:prakash.n@tevatel.com?subject=Need More Information about Doocti ]
Communications Simplified
Contact Us: +919790776655 | prakash.n(a)tevatel.com
No:76, Swamibakthan Street, Nammalwarpet, Chennai - 600012.
www.tevatel.com | www.doocti.comhttp://viewstripo.email/?utm_source=templates&utm_medium=email&utm_campaign…
----------------------------------------------------------------------
This email was sent by prakash.n(a)tevatel.com to sr-dev(a)lists.sip-router.org
Not interested?Unsubscribe - https://tihk.maillist-manage.com/ua/optout?od=27218d28c96aa859ed0ac1287be0e…
Update profile - https://tihk.maillist-manage.com/ua/upc?upd=164d3589027540bb&r=164d35890275…
Asterfone technologies pvt ltd | Swamibakthan St, Thiruvalluvar Nagar, Nammalwarpet, Ayanavaram, Chennai, Tamil Nadu 600010
Our Privacy Policy [ ] and Terms of Use. [ ]
Module: kamailio
Branch: 5.2
Commit: 353192ca4f2203fb85fdda6e0ea9e734f27019cf
URL: https://github.com/kamailio/kamailio/commit/353192ca4f2203fb85fdda6e0ea9e73…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Committer: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2019-05-17T09:22:17+02:00
db_mongodb: catch the null values and set the type to DB1_STRING
- avoid the log message on unhandled type
(cherry picked from commit a5781fc4bb3063c6e7abf54d93178ef610617298)
---
Modified: src/modules/db_mongodb/mongodb_dbase.c
---
Diff: https://github.com/kamailio/kamailio/commit/353192ca4f2203fb85fdda6e0ea9e73…
Patch: https://github.com/kamailio/kamailio/commit/353192ca4f2203fb85fdda6e0ea9e73…
---
diff --git a/src/modules/db_mongodb/mongodb_dbase.c b/src/modules/db_mongodb/mongodb_dbase.c
index 8d88049919..db7f67c1e9 100644
--- a/src/modules/db_mongodb/mongodb_dbase.c
+++ b/src/modules/db_mongodb/mongodb_dbase.c
@@ -504,13 +504,18 @@ int db_mongodb_get_columns(const db1_con_t* _h, db1_res_t* _r)
RES_TYPES(_r)[col] = DB1_STRING;
break;
+ case BSON_TYPE_NULL:
+ /* 'null' value - default to type DB1_STRING */
+ LM_DBG("BSON_TYPE_NULL - use DB1_STRING result type\n");
+ RES_TYPES(_r)[col] = DB1_STRING;
+ break;
+
#if 0
case BSON_TYPE_EOD:
case BSON_TYPE_DOCUMENT:
case BSON_TYPE_ARRAY:
case BSON_TYPE_UNDEFINED:
case BSON_TYPE_OID:
- case BSON_TYPE_NULL:
case BSON_TYPE_REGEX:
case BSON_TYPE_DBPOINTER:
case BSON_TYPE_CODE:
Module: kamailio
Branch: master
Commit: a5781fc4bb3063c6e7abf54d93178ef610617298
URL: https://github.com/kamailio/kamailio/commit/a5781fc4bb3063c6e7abf54d93178ef…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Committer: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2019-05-16T12:35:46+02:00
db_mongodb: catch the null values and set the type to DB1_STRING
- avoid the log message on unhandled type
---
Modified: src/modules/db_mongodb/mongodb_dbase.c
---
Diff: https://github.com/kamailio/kamailio/commit/a5781fc4bb3063c6e7abf54d93178ef…
Patch: https://github.com/kamailio/kamailio/commit/a5781fc4bb3063c6e7abf54d93178ef…
---
diff --git a/src/modules/db_mongodb/mongodb_dbase.c b/src/modules/db_mongodb/mongodb_dbase.c
index 8d88049919..db7f67c1e9 100644
--- a/src/modules/db_mongodb/mongodb_dbase.c
+++ b/src/modules/db_mongodb/mongodb_dbase.c
@@ -504,13 +504,18 @@ int db_mongodb_get_columns(const db1_con_t* _h, db1_res_t* _r)
RES_TYPES(_r)[col] = DB1_STRING;
break;
+ case BSON_TYPE_NULL:
+ /* 'null' value - default to type DB1_STRING */
+ LM_DBG("BSON_TYPE_NULL - use DB1_STRING result type\n");
+ RES_TYPES(_r)[col] = DB1_STRING;
+ break;
+
#if 0
case BSON_TYPE_EOD:
case BSON_TYPE_DOCUMENT:
case BSON_TYPE_ARRAY:
case BSON_TYPE_UNDEFINED:
case BSON_TYPE_OID:
- case BSON_TYPE_NULL:
case BSON_TYPE_REGEX:
case BSON_TYPE_DBPOINTER:
case BSON_TYPE_CODE: