Displaying 4 results from an estimated 4 matches for "append_mailbox".
2004 Jun 23
0
Patch for postgres enabled app_voicemail.c
...M
static inline int sql_init(void) { return 0; }
static inline void sql_close(void) { }
#endif
#include <pthread.h>
--- 49,64 ----
/*
* PostgreSQL routines written by Otmar Lendl <lendl@nic.at>
*/
! #include <libpq-fe.h>
#define USESQLVM 1
#endif
+ static int append_mailbox(char *, char *, char *);
+
#ifndef USESQLVM
static inline int sql_init(void) { return 0; }
static inline void sql_close(void) { }
+ static void sql_append_mailboxes(void);
#endif
#include <pthread.h>
***************
*** 237,250 ****
#ifdef USEPOSTGRESVM
! PGconn *dbhandler;
c...
2004 Jun 23
0
UPDATE Patch for postgres enabled app_voicemail.c
...M
static inline int sql_init(void) { return 0; }
static inline void sql_close(void) { }
#endif
#include <pthread.h>
--- 49,64 ----
/*
* PostgreSQL routines written by Otmar Lendl <lendl@nic.at>
*/
! #include <libpq-fe.h>
#define USESQLVM 1
#endif
+ static int append_mailbox(char *, char *, char *);
+
#ifndef USESQLVM
static inline int sql_init(void) { return 0; }
static inline void sql_close(void) { }
+ static void sql_append_mailboxes(void);
#endif
#include <pthread.h>
***************
*** 237,250 ****
#ifdef USEPOSTGRESVM
! PGconn *dbhandler;
c...
2005 Sep 12
1
compile error with postgres and voicemail
...0: warning: passing arg 2 of `__builtin_strncpy' makes
pointer from integer without a cast
app_voicemail.c:480: warning: format argument is not a pointer (arg 6)
app_voicemail.c: At top level:
app_voicemail.c:508: warning: `reset_user_pw' defined but not used
app_voicemail.c:3754: warning: `append_mailbox' defined but not used
make[1]: *** [app_voicemail.o] Error 1
make[1]: Leaving directory `/usr/src/asterisk-1.0.9/apps'
make: *** [subdirs] Error 1
Can anyone give me a hint?
Thanks!
Sebastian
2003 Jun 15
3
Voicemail and DISA fixes
I've commited changes to Voicemail2:
* Handle properly when being left a message while checking VM --
this should fix the "saving to your inbox" issue too, at least in
principle.
And to DISA:
* Properly handle extensions with multiple matches and "dots"
Please let me know on or off list about any feedback you have regarding
these changes.
Mark