2 * Asterisk -- An open source telephony toolkit.
4 * Copyright (C) 1999 - 2006, Digium, Inc.
6 * Mark Spencer <markster@digium.com>
8 * See http://www.asterisk.org for more information about
9 * the Asterisk project. Please do not directly contact
10 * any of the maintainers of this project for assistance;
11 * the project provides a web site, mailing lists and IRC
12 * channels for your use.
14 * This program is free software, distributed under the terms of
15 * the GNU General Public License Version 2. See the LICENSE file
16 * at the top of the source tree.
21 * \author Mark Spencer <markster@digium.com>
22 * \brief Comedian Mail - Voicemail System
24 * \extref unixODBC (http://www.unixodbc.org/)
25 * \extref A source distribution of University of Washington's IMAP c-client
26 * (http://www.washington.edu/imap/)
30 * \note For information about voicemail IMAP storage, read doc/imapstorage.txt
31 * \ingroup applications
32 * \note This module requires res_adsi to load. This needs to be optional
35 * \note This file is now almost impossible to work with, due to all \#ifdefs.
36 * Feels like the database code before realtime. Someone - please come up
37 * with a plan to clean this up.
41 <depend>res_smdi</depend>
45 <category name="MENUSELECT_OPTS_app_voicemail" displayname="Voicemail Build Options" positive_output="yes" remove_on_change="apps/app_voicemail.o apps/app_voicemail.so apps/app_directory.o apps/app_directory.so">
46 <member name="FILE_STORAGE" displayname="Storage of Voicemail using filesystem">
47 <conflict>ODBC_STORAGE</conflict>
48 <conflict>IMAP_STORAGE</conflict>
49 <defaultenabled>yes</defaultenabled>
51 <member name="ODBC_STORAGE" displayname="Storage of Voicemail using ODBC">
52 <depend>generic_odbc</depend>
54 <conflict>IMAP_STORAGE</conflict>
55 <conflict>FILE_STORAGE</conflict>
56 <defaultenabled>no</defaultenabled>
58 <member name="IMAP_STORAGE" displayname="Storage of Voicemail using IMAP4">
59 <depend>imap_tk</depend>
60 <conflict>ODBC_STORAGE</conflict>
61 <conflict>FILE_STORAGE</conflict>
63 <defaultenabled>no</defaultenabled>
74 #ifdef USE_SYSTEM_IMAP
75 #include <imap/c-client.h>
76 #include <imap/imap4r1.h>
77 #include <imap/linkage.h>
78 #elif defined (USE_SYSTEM_CCLIENT)
79 #include <c-client/c-client.h>
80 #include <c-client/imap4r1.h>
81 #include <c-client/linkage.h>
89 ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
91 #include "asterisk/paths.h" /* use ast_config_AST_SPOOL_DIR */
98 #include "asterisk/logger.h"
99 #include "asterisk/lock.h"
100 #include "asterisk/file.h"
101 #include "asterisk/channel.h"
102 #include "asterisk/pbx.h"
103 #include "asterisk/config.h"
104 #include "asterisk/say.h"
105 #include "asterisk/module.h"
106 #include "asterisk/adsi.h"
107 #include "asterisk/app.h"
108 #include "asterisk/manager.h"
109 #include "asterisk/dsp.h"
110 #include "asterisk/localtime.h"
111 #include "asterisk/cli.h"
112 #include "asterisk/utils.h"
113 #include "asterisk/stringfields.h"
114 #include "asterisk/smdi.h"
115 #include "asterisk/event.h"
116 #include "asterisk/taskprocessor.h"
119 #include "asterisk/res_odbc.h"
123 #include "asterisk/threadstorage.h"
127 <application name="VoiceMail" language="en_US">
129 Leave a Voicemail message.
132 <parameter name="mailboxs" argsep="&" required="true">
133 <argument name="mailbox1" argsep="@" required="true">
134 <argument name="mailbox" required="true" />
135 <argument name="context" />
137 <argument name="mailbox2" argsep="@" multiple="true">
138 <argument name="mailbox" required="true" />
139 <argument name="context" />
142 <parameter name="options">
145 <para>Play the <literal>busy</literal> greeting to the calling party.</para>
148 <argument name="c" />
149 <para>Accept digits for a new extension in context <replaceable>c</replaceable>,
150 if played during the greeting. Context defaults to the current context.</para>
153 <argument name="#" required="true" />
154 <para>Use the specified amount of gain when recording the voicemail
155 message. The units are whole-number decibels (dB). Only works on supported
156 technologies, which is DAHDI only.</para>
159 <para>Skip the playback of instructions for leaving a message to the
160 calling party.</para>
163 <para>Play the <literal>unavailable</literal> greeting.</para>
166 <para>Mark message as <literal>URGENT</literal>.</para>
169 <para>Mark message as <literal>PRIORITY</literal>.</para>
175 <para>This application allows the calling party to leave a message for the specified
176 list of mailboxes. When multiple mailboxes are specified, the greeting will be taken from
177 the first mailbox specified. Dialplan execution will stop if the specified mailbox does not
179 <para>The Voicemail application will exit if any of the following DTMF digits are received:</para>
182 <para>Jump to the <literal>o</literal> extension in the current dialplan context.</para>
185 <para>Jump to the <literal>a</literal> extension in the current dialplan context.</para>
188 <para>This application will set the following channel variable upon completion:</para>
190 <variable name="VMSTATUS">
191 <para>This indicates the status of the execution of the VoiceMail application.</para>
192 <value name="SUCCESS" />
193 <value name="USEREXIT" />
194 <value name="FAILED" />
199 <application name="VoiceMailMain" language="en_US">
201 Check Voicemail messages.
204 <parameter name="mailbox" required="true" argsep="@">
205 <argument name="mailbox" />
206 <argument name="context" />
208 <parameter name="options">
211 <para>Consider the <replaceable>mailbox</replaceable> parameter as a prefix to
212 the mailbox that is entered by the caller.</para>
215 <argument name="#" required="true" />
216 <para>Use the specified amount of gain when recording a voicemail message.
217 The units are whole-number decibels (dB).</para>
220 <para>Skip checking the passcode for the mailbox.</para>
223 <argument name="folder" required="true" />
224 <para>Skip folder prompt and go directly to <replaceable>folder</replaceable> specified.
225 Defaults to <literal>INBOX</literal> (or <literal>0</literal>).</para>
227 <enum name="0"><para>INBOX</para></enum>
228 <enum name="1"><para>Old</para></enum>
229 <enum name="2"><para>Work</para></enum>
230 <enum name="3"><para>Family</para></enum>
231 <enum name="4"><para>Friends</para></enum>
232 <enum name="5"><para>Cust1</para></enum>
233 <enum name="6"><para>Cust2</para></enum>
234 <enum name="7"><para>Cust3</para></enum>
235 <enum name="8"><para>Cust4</para></enum>
236 <enum name="9"><para>Cust5</para></enum>
243 <para>This application allows the calling party to check voicemail messages. A specific
244 <replaceable>mailbox</replaceable>, and optional corresponding <replaceable>context</replaceable>,
245 may be specified. If a <replaceable>mailbox</replaceable> is not provided, the calling party will
246 be prompted to enter one. If a <replaceable>context</replaceable> is not specified, the
247 <literal>default</literal> context will be used.</para>
250 <application name="MailboxExists" language="en_US">
252 Check to see if Voicemail mailbox exists.
255 <parameter name="mailbox" required="true" argsep="@">
256 <argument name="mailbox" required="true" />
257 <argument name="context" />
259 <parameter name="options">
260 <para>None options.</para>
264 <para>Check to see if the specified <replaceable>mailbox</replaceable> exists. If no voicemail
265 <replaceable>context</replaceable> is specified, the <literal>default</literal> context
267 <para>This application will set the following channel variable upon completion:</para>
269 <variable name="VMBOXEXISTSSTATUS">
270 <para>This will contain the status of the execution of the MailboxExists application.
271 Possible values include:</para>
272 <value name="SUCCESS" />
273 <value name="FAILED" />
278 <application name="VMAuthenticate" language="en_US">
280 Authenticate with Voicemail passwords.
283 <parameter name="mailbox" required="true" argsep="@">
284 <argument name="mailbox" />
285 <argument name="context" />
287 <parameter name="options">
290 <para>Skip playing the initial prompts.</para>
296 <para>This application behaves the same way as the Authenticate application, but the passwords
297 are taken from <filename>voicemail.conf</filename>. If the <replaceable>mailbox</replaceable> is
298 specified, only that mailbox's password will be considered valid. If the <replaceable>mailbox</replaceable>
299 is not specified, the channel variable <variable>AUTH_MAILBOX</variable> will be set with the authenticated
303 <function name="MAILBOX_EXISTS" language="en_US">
305 Tell if a mailbox is configured.
308 <parameter name="mailbox" required="true" />
309 <parameter name="context" />
312 <para>Returns a boolean of whether the corresponding <replaceable>mailbox</replaceable> exists.
313 If <replaceable>context</replaceable> is not specified, defaults to the <literal>default</literal>
317 <manager name="VoicemailUsersList" language="en_US">
319 List All Voicemail User Information.
322 <xi:include xpointer="xpointer(/docs/manager[@name='Login']/syntax/parameter[@name='ActionID'])" />
330 static char imapserver[48];
331 static char imapport[8];
332 static char imapflags[128];
333 static char imapfolder[64];
334 static char imapparentfolder[64] = "\0";
335 static char greetingfolder[64];
336 static char authuser[32];
337 static char authpassword[42];
338 static int imapversion = 1;
340 static int expungeonhangup = 1;
341 static int imapgreetings = 0;
342 static char delimiter = '\0';
347 AST_THREADSTORAGE(ts_vmstate);
349 /* Forward declarations for IMAP */
350 static int init_mailstream(struct vm_state *vms, int box);
351 static void write_file(char *filename, char *buffer, unsigned long len);
352 static char *get_header_by_tag(char *header, char *tag, char *buf, size_t len);
353 static void vm_imap_delete(char *file, int msgnum, struct ast_vm_user *vmu);
354 static char *get_user_by_mailbox(char *mailbox, char *buf, size_t len);
355 static struct vm_state *get_vm_state_by_imapuser(const char *user, int interactive);
356 static struct vm_state *get_vm_state_by_mailbox(const char *mailbox, const char *context, int interactive);
357 static struct vm_state *create_vm_state_from_user(struct ast_vm_user *vmu);
358 static void vmstate_insert(struct vm_state *vms);
359 static void vmstate_delete(struct vm_state *vms);
360 static void set_update(MAILSTREAM * stream);
361 static void init_vm_state(struct vm_state *vms);
362 static int save_body(BODY *body, struct vm_state *vms, char *section, char *format, int is_intro);
363 static void get_mailbox_delimiter(MAILSTREAM *stream);
364 static void mm_parsequota (MAILSTREAM *stream, unsigned char *msg, QUOTALIST *pquota);
365 static void imap_mailbox_name(char *spec, size_t len, struct vm_state *vms, int box, int target);
366 static int imap_store_file(char *dir, char *mailboxuser, char *mailboxcontext, int msgnum, struct ast_channel *chan, struct ast_vm_user *vmu, char *fmt, int duration, struct vm_state *vms, const char *flag);
367 static void update_messages_by_imapuser(const char *user, unsigned long number);
368 static int vm_delete(char *file);
370 static int imap_remove_file (char *dir, int msgnum);
371 static int imap_retrieve_file (const char *dir, const int msgnum, const char *mailbox, const char *context);
372 static int imap_delete_old_greeting (char *dir, struct vm_state *vms);
373 static void check_quota(struct vm_state *vms, char *mailbox);
374 static int open_mailbox(struct vm_state *vms, struct ast_vm_user *vmu, int box);
376 struct vm_state *vms;
377 AST_LIST_ENTRY(vmstate) list;
380 static AST_LIST_HEAD_STATIC(vmstates, vmstate);
384 #define SMDI_MWI_WAIT_TIMEOUT 1000 /* 1 second */
386 #define COMMAND_TIMEOUT 5000
387 /* Don't modify these here; set your umask at runtime instead */
388 #define VOICEMAIL_DIR_MODE 0777
389 #define VOICEMAIL_FILE_MODE 0666
390 #define CHUNKSIZE 65536
392 #define VOICEMAIL_CONFIG "voicemail.conf"
393 #define ASTERISK_USERNAME "asterisk"
395 /* Define fast-forward, pause, restart, and reverse keys
396 while listening to a voicemail message - these are
397 strings, not characters */
398 #define DEFAULT_LISTEN_CONTROL_FORWARD_KEY "#"
399 #define DEFAULT_LISTEN_CONTROL_REVERSE_KEY "*"
400 #define DEFAULT_LISTEN_CONTROL_PAUSE_KEY "0"
401 #define DEFAULT_LISTEN_CONTROL_RESTART_KEY "2"
402 #define DEFAULT_LISTEN_CONTROL_STOP_KEY "13456789"
403 #define VALID_DTMF "1234567890*#" /* Yes ABCD are valid dtmf but what phones have those? */
405 /* Default mail command to mail voicemail. Change it with the
406 mailcmd= command in voicemail.conf */
407 #define SENDMAIL "/usr/sbin/sendmail -t"
409 #define INTRO "vm-intro"
412 #define MAXMSGLIMIT 9999
414 #define MINPASSWORD 0 /*!< Default minimum mailbox password length */
416 #define BASELINELEN 72
417 #define BASEMAXINLINE 256
420 #define MAX_DATETIME_FORMAT 512
421 #define MAX_NUM_CID_CONTEXTS 10
423 #define VM_REVIEW (1 << 0) /*!< After recording, permit the caller to review the recording before saving */
424 #define VM_OPERATOR (1 << 1) /*!< Allow 0 to be pressed to go to 'o' extension */
425 #define VM_SAYCID (1 << 2) /*!< Repeat the CallerID info during envelope playback */
426 #define VM_SVMAIL (1 << 3) /*!< Allow the user to compose a new VM from within VoicemailMain */
427 #define VM_ENVELOPE (1 << 4) /*!< Play the envelope information (who-from, time received, etc.) */
428 #define VM_SAYDURATION (1 << 5) /*!< Play the length of the message during envelope playback */
429 #define VM_SKIPAFTERCMD (1 << 6) /*!< After deletion, assume caller wants to go to the next message */
430 #define VM_FORCENAME (1 << 7) /*!< Have new users record their name */
431 #define VM_FORCEGREET (1 << 8) /*!< Have new users record their greetings */
432 #define VM_PBXSKIP (1 << 9) /*!< Skip the [PBX] preamble in the Subject line of emails */
433 #define VM_DIRECFORWARD (1 << 10) /*!< Permit caller to use the Directory app for selecting to which mailbox to forward a VM */
434 #define VM_ATTACH (1 << 11) /*!< Attach message to voicemail notifications? */
435 #define VM_DELETE (1 << 12) /*!< Delete message after sending notification */
436 #define VM_ALLOCED (1 << 13) /*!< Structure was malloc'ed, instead of placed in a return (usually static) buffer */
437 #define VM_SEARCH (1 << 14) /*!< Search all contexts for a matching mailbox */
438 #define VM_TEMPGREETWARN (1 << 15) /*!< Remind user tempgreeting is set */
439 #define VM_MOVEHEARD (1 << 16) /*!< Move a "heard" message to Old after listening to it */
440 #define VM_MESSAGEWRAP (1 << 17) /*!< Wrap around from the last message to the first, and vice-versa */
441 #define VM_FWDURGAUTO (1 << 18) /*!< Autoset of Urgent flag on forwarded Urgent messages set globally */
442 #define ERROR_LOCK_PATH -100
454 enum vm_option_flags {
455 OPT_SILENT = (1 << 0),
456 OPT_BUSY_GREETING = (1 << 1),
457 OPT_UNAVAIL_GREETING = (1 << 2),
458 OPT_RECORDGAIN = (1 << 3),
459 OPT_PREPEND_MAILBOX = (1 << 4),
460 OPT_AUTOPLAY = (1 << 6),
461 OPT_DTMFEXIT = (1 << 7),
462 OPT_MESSAGE_Urgent = (1 << 8),
463 OPT_MESSAGE_PRIORITY = (1 << 9)
466 enum vm_option_args {
467 OPT_ARG_RECORDGAIN = 0,
468 OPT_ARG_PLAYFOLDER = 1,
469 OPT_ARG_DTMFEXIT = 2,
470 /* This *must* be the last value in this enum! */
471 OPT_ARG_ARRAY_SIZE = 3,
474 enum vm_passwordlocation {
475 OPT_PWLOC_VOICEMAILCONF = 0,
476 OPT_PWLOC_SPOOLDIR = 1,
477 OPT_PWLOC_USERSCONF = 2,
480 AST_APP_OPTIONS(vm_app_options, {
481 AST_APP_OPTION('s', OPT_SILENT),
482 AST_APP_OPTION('b', OPT_BUSY_GREETING),
483 AST_APP_OPTION('u', OPT_UNAVAIL_GREETING),
484 AST_APP_OPTION_ARG('g', OPT_RECORDGAIN, OPT_ARG_RECORDGAIN),
485 AST_APP_OPTION_ARG('d', OPT_DTMFEXIT, OPT_ARG_DTMFEXIT),
486 AST_APP_OPTION('p', OPT_PREPEND_MAILBOX),
487 AST_APP_OPTION_ARG('a', OPT_AUTOPLAY, OPT_ARG_PLAYFOLDER),
488 AST_APP_OPTION('U', OPT_MESSAGE_Urgent),
489 AST_APP_OPTION('P', OPT_MESSAGE_PRIORITY)
492 static int load_config(int reload);
494 /*! \page vmlang Voicemail Language Syntaxes Supported
496 \par Syntaxes supported, not really language codes.
503 \arg \b pt - Portuguese
504 \arg \b pt_BR - Portuguese (Brazil)
506 \arg \b no - Norwegian
508 \arg \b tw - Chinese (Taiwan)
509 \arg \b ua - Ukrainian
511 German requires the following additional soundfile:
512 \arg \b 1F einE (feminine)
514 Spanish requires the following additional soundfile:
515 \arg \b 1M un (masculine)
517 Dutch, Portuguese & Spanish require the following additional soundfiles:
518 \arg \b vm-INBOXs singular of 'new'
519 \arg \b vm-Olds singular of 'old/heard/read'
522 \arg \b vm-INBOX nieuwe (nl)
523 \arg \b vm-Old oude (nl)
526 \arg \b vm-new-a 'new', feminine singular accusative
527 \arg \b vm-new-e 'new', feminine plural accusative
528 \arg \b vm-new-ych 'new', feminine plural genitive
529 \arg \b vm-old-a 'old', feminine singular accusative
530 \arg \b vm-old-e 'old', feminine plural accusative
531 \arg \b vm-old-ych 'old', feminine plural genitive
532 \arg \b digits/1-a 'one', not always same as 'digits/1'
533 \arg \b digits/2-ie 'two', not always same as 'digits/2'
536 \arg \b vm-nytt singular of 'new'
537 \arg \b vm-nya plural of 'new'
538 \arg \b vm-gammalt singular of 'old'
539 \arg \b vm-gamla plural of 'old'
540 \arg \b digits/ett 'one', not always same as 'digits/1'
543 \arg \b vm-ny singular of 'new'
544 \arg \b vm-nye plural of 'new'
545 \arg \b vm-gammel singular of 'old'
546 \arg \b vm-gamle plural of 'old'
554 Italian requires the following additional soundfile:
558 \arg \b vm-nuovi new plural
559 \arg \b vm-vecchio old
560 \arg \b vm-vecchi old plural
562 Chinese (Taiwan) requires the following additional soundfile:
563 \arg \b vm-tong A class-word for call (tong1)
564 \arg \b vm-ri A class-word for day (ri4)
565 \arg \b vm-you You (ni3)
566 \arg \b vm-haveno Have no (mei2 you3)
567 \arg \b vm-have Have (you3)
568 \arg \b vm-listen To listen (yao4 ting1)
571 \note Don't use vm-INBOX or vm-Old, because they are the name of the INBOX and Old folders,
572 spelled among others when you have to change folder. For the above reasons, vm-INBOX
573 and vm-Old are spelled plural, to make them sound more as folder name than an adjective.
582 unsigned char iobuf[BASEMAXINLINE];
585 /*! Structure for linked list of users
586 * Use ast_vm_user_destroy() to free one of these structures. */
588 char context[AST_MAX_CONTEXT]; /*!< Voicemail context */
589 char mailbox[AST_MAX_EXTENSION]; /*!< Mailbox id, unique within vm context */
590 char password[80]; /*!< Secret pin code, numbers only */
591 char fullname[80]; /*!< Full name, for directory app */
592 char email[80]; /*!< E-mail address */
593 char *emailsubject; /*!< E-mail subject */
594 char *emailbody; /*!< E-mail body */
595 char pager[80]; /*!< E-mail address to pager (no attachment) */
596 char serveremail[80]; /*!< From: Mail address */
597 char mailcmd[160]; /*!< Configurable mail command */
598 char language[MAX_LANGUAGE]; /*!< Config: Language setting */
599 char zonetag[80]; /*!< Time zone */
602 char uniqueid[80]; /*!< Unique integer identifier */
604 char attachfmt[20]; /*!< Attachment format */
605 unsigned int flags; /*!< VM_ flags */
607 int maxmsg; /*!< Maximum number of msgs per folder for this mailbox */
608 int maxdeletedmsg; /*!< Maximum number of deleted msgs saved for this mailbox */
609 int maxsecs; /*!< Maximum number of seconds per message for this mailbox */
610 int passwordlocation; /*!< Storage location of the password */
612 char imapuser[80]; /*!< IMAP server login */
613 char imappassword[80]; /*!< IMAP server password if authpassword not defined */
614 char imapfolder[64]; /*!< IMAP voicemail folder */
615 char imapvmshareid[80]; /*!< Shared mailbox ID to use rather than the dialed one */
616 int imapversion; /*!< If configuration changes, use the new values */
618 double volgain; /*!< Volume gain for voicemails sent via email */
619 AST_LIST_ENTRY(ast_vm_user) list;
622 /*! Voicemail time zones */
624 AST_LIST_ENTRY(vm_zone) list;
627 char msg_format[512];
630 #define VMSTATE_MAX_MSG_ARRAY 256
632 /*! Voicemail mailbox state */
637 char curdir[PATH_MAX];
638 char vmbox[PATH_MAX];
640 char intro[PATH_MAX];
652 int updated; /*!< decremented on each mail check until 1 -allows delay */
653 long msgArray[VMSTATE_MAX_MSG_ARRAY];
654 MAILSTREAM *mailstream;
656 char imapuser[80]; /*!< IMAP server login */
657 char imapfolder[64]; /*!< IMAP voicemail folder */
660 char introfn[PATH_MAX]; /*!< Name of prepended file */
661 unsigned int quota_limit;
662 unsigned int quota_usage;
663 struct vm_state *persist_vms;
668 static char odbc_database[80];
669 static char odbc_table[80];
670 #define RETRIEVE(a,b,c,d) retrieve_file(a,b)
671 #define DISPOSE(a,b) remove_file(a,b)
672 #define STORE(a,b,c,d,e,f,g,h,i,j) store_file(a,b,c,d)
673 #define EXISTS(a,b,c,d) (message_exists(a,b))
674 #define RENAME(a,b,c,d,e,f,g,h) (rename_file(a,b,c,d,e,f))
675 #define COPY(a,b,c,d,e,f,g,h) (copy_file(a,b,c,d,e,f))
676 #define DELETE(a,b,c,d) (delete_file(a,b))
679 #define DISPOSE(a,b) (imap_remove_file(a,b))
680 #define STORE(a,b,c,d,e,f,g,h,i,j) (imap_store_file(a,b,c,d,e,f,g,h,i,j))
681 #define RETRIEVE(a,b,c,d) imap_retrieve_file(a,b,c,d)
682 #define EXISTS(a,b,c,d) (ast_fileexists(c,NULL,d) > 0)
683 #define RENAME(a,b,c,d,e,f,g,h) (rename_file(g,h));
684 #define COPY(a,b,c,d,e,f,g,h) (copy_file(g,h));
685 #define DELETE(a,b,c,d) (vm_imap_delete(a,b,d))
687 #define RETRIEVE(a,b,c,d)
689 #define STORE(a,b,c,d,e,f,g,h,i,j)
690 #define EXISTS(a,b,c,d) (ast_fileexists(c,NULL,d) > 0)
691 #define RENAME(a,b,c,d,e,f,g,h) (rename_file(g,h));
692 #define COPY(a,b,c,d,e,f,g,h) (copy_plain_file(g,h));
693 #define DELETE(a,b,c,d) (vm_delete(c))
697 static char VM_SPOOL_DIR[PATH_MAX];
699 static char ext_pass_cmd[128];
700 static char ext_pass_check_cmd[128];
704 #define PWDCHANGE_INTERNAL (1 << 1)
705 #define PWDCHANGE_EXTERNAL (1 << 2)
706 static int pwdchange = PWDCHANGE_INTERNAL;
709 #define tdesc "Comedian Mail (Voicemail System) with ODBC Storage"
712 # define tdesc "Comedian Mail (Voicemail System) with IMAP Storage"
714 # define tdesc "Comedian Mail (Voicemail System)"
718 static char userscontext[AST_MAX_EXTENSION] = "default";
720 static char *addesc = "Comedian Mail";
722 /* Leave a message */
723 static char *app = "VoiceMail";
725 /* Check mail, control, etc */
726 static char *app2 = "VoiceMailMain";
728 static char *app3 = "MailboxExists";
729 static char *app4 = "VMAuthenticate";
731 static AST_LIST_HEAD_STATIC(users, ast_vm_user);
732 static AST_LIST_HEAD_STATIC(zones, vm_zone);
733 static char zonetag[80];
734 static int maxsilence;
736 static int maxdeletedmsg;
737 static int silencethreshold = 128;
738 static char serveremail[80];
739 static char mailcmd[160]; /* Configurable mail cmd */
740 static char externnotify[160];
741 static struct ast_smdi_interface *smdi_iface = NULL;
742 static char vmfmts[80];
743 static double volgain;
744 static int vmminsecs;
745 static int vmmaxsecs;
748 static int maxlogins;
749 static int minpassword;
750 static int passwordlocation;
752 /*! Poll mailboxes for changes since there is something external to
753 * app_voicemail that may change them. */
754 static unsigned int poll_mailboxes;
756 /*! Polling frequency */
757 static unsigned int poll_freq;
758 /*! By default, poll every 30 seconds */
759 #define DEFAULT_POLL_FREQ 30
761 AST_MUTEX_DEFINE_STATIC(poll_lock);
762 static ast_cond_t poll_cond = PTHREAD_COND_INITIALIZER;
763 static pthread_t poll_thread = AST_PTHREADT_NULL;
764 static unsigned char poll_thread_run;
766 /*! Subscription to ... MWI event subscriptions */
767 static struct ast_event_sub *mwi_sub_sub;
768 /*! Subscription to ... MWI event un-subscriptions */
769 static struct ast_event_sub *mwi_unsub_sub;
772 * \brief An MWI subscription
774 * This is so we can keep track of which mailboxes are subscribed to.
775 * This way, we know which mailboxes to poll when the pollmailboxes
776 * option is being used.
779 AST_RWLIST_ENTRY(mwi_sub) entry;
787 struct mwi_sub_task {
793 static struct ast_taskprocessor *mwi_subscription_tps;
795 static AST_RWLIST_HEAD_STATIC(mwi_subs, mwi_sub);
797 /* custom audio control prompts for voicemail playback */
798 static char listen_control_forward_key[12];
799 static char listen_control_reverse_key[12];
800 static char listen_control_pause_key[12];
801 static char listen_control_restart_key[12];
802 static char listen_control_stop_key[12];
804 /* custom password sounds */
805 static char vm_password[80] = "vm-password";
806 static char vm_newpassword[80] = "vm-newpassword";
807 static char vm_passchanged[80] = "vm-passchanged";
808 static char vm_reenterpassword[80] = "vm-reenterpassword";
809 static char vm_mismatch[80] = "vm-mismatch";
810 static char vm_invalid_password[80] = "vm-invalid-password";
811 static char vm_pls_try_again[80] = "vm-pls-try-again";
813 static struct ast_flags globalflags = {0};
815 static int saydurationminfo;
817 static char dialcontext[AST_MAX_CONTEXT] = "";
818 static char callcontext[AST_MAX_CONTEXT] = "";
819 static char exitcontext[AST_MAX_CONTEXT] = "";
821 static char cidinternalcontexts[MAX_NUM_CID_CONTEXTS][64];
824 static char *emailbody = NULL;
825 static char *emailsubject = NULL;
826 static char *pagerbody = NULL;
827 static char *pagersubject = NULL;
828 static char fromstring[100];
829 static char pagerfromstring[100];
830 static char charset[32] = "ISO-8859-1";
832 static unsigned char adsifdn[4] = "\x00\x00\x00\x0F";
833 static unsigned char adsisec[4] = "\x9B\xDB\xF7\xAC";
834 static int adsiver = 1;
835 static char emaildateformat[32] = "%A, %B %d, %Y at %r";
836 static char pagerdateformat[32] = "%A, %B %d, %Y at %r";
838 /* Forward declarations - generic */
839 static int open_mailbox(struct vm_state *vms, struct ast_vm_user *vmu, int box);
840 static int advanced_options(struct ast_channel *chan, struct ast_vm_user *vmu, struct vm_state *vms, int msg, int option, signed char record_gain);
841 static int dialout(struct ast_channel *chan, struct ast_vm_user *vmu, char *num, char *outgoing_context);
842 static int play_record_review(struct ast_channel *chan, char *playfile, char *recordfile, int maxtime,
843 char *fmt, int outsidecaller, struct ast_vm_user *vmu, int *duration, const char *unlockdir,
844 signed char record_gain, struct vm_state *vms, char *flag);
845 static int vm_tempgreeting(struct ast_channel *chan, struct ast_vm_user *vmu, struct vm_state *vms, char *fmtc, signed char record_gain);
846 static int vm_play_folder_name(struct ast_channel *chan, char *mbox);
847 static int notify_new_message(struct ast_channel *chan, struct ast_vm_user *vmu, struct vm_state *vms, int msgnum, long duration, char *fmt, char *cidnum, char *cidname, const char *flag);
848 static void make_email_file(FILE *p, char *srcemail, struct ast_vm_user *vmu, int msgnum, char *context, char *mailbox, const char *fromfolder, char *cidnum, char *cidname, char *attach, char *attach2, char *format, int duration, int attach_user_voicemail, struct ast_channel *chan, const char *category, int imap, const char *flag);
849 static void apply_options(struct ast_vm_user *vmu, const char *options);
850 static int add_email_attachment(FILE *p, struct ast_vm_user *vmu, char *format, char *attach, char *greeting_attachment, char *mailbox, char *bound, char *filename, int last, int msgnum);
851 static int is_valid_dtmf(const char *key);
852 static void read_password_from_file(const char *secretfn, char *password, int passwordlen);
853 static int write_password_to_file(const char *secretfn, const char *password);
855 #if !(defined(ODBC_STORAGE) || defined(IMAP_STORAGE))
856 static int __has_voicemail(const char *context, const char *mailbox, const char *folder, int shortcircuit);
860 * \brief Strips control and non 7-bit clean characters from input string.
862 * \note To map control and none 7-bit characters to a 7-bit clean characters
863 * please use ast_str_encode_mine().
865 static char *strip_control_and_high(const char *input, char *buf, size_t buflen)
868 for (; *input; input++) {
873 if (bufptr == buf + buflen - 1) {
883 * \brief Sets default voicemail system options to a voicemail user.
885 * This applies select global settings to a newly created (dynamic) instance of a voicemail user.
886 * - all the globalflags
887 * - the saydurationminfo
891 * - vmmaxsecs, vmmaxmsg, maxdeletedmsg
894 static void populate_defaults(struct ast_vm_user *vmu)
896 ast_copy_flags(vmu, (&globalflags), AST_FLAGS_ALL);
897 vmu->passwordlocation = passwordlocation;
898 if (saydurationminfo)
899 vmu->saydurationm = saydurationminfo;
900 ast_copy_string(vmu->callback, callcontext, sizeof(vmu->callback));
901 ast_copy_string(vmu->dialout, dialcontext, sizeof(vmu->dialout));
902 ast_copy_string(vmu->exit, exitcontext, sizeof(vmu->exit));
903 ast_copy_string(vmu->zonetag, zonetag, sizeof(vmu->zonetag));
905 vmu->maxsecs = vmmaxsecs;
907 vmu->maxmsg = maxmsg;
909 vmu->maxdeletedmsg = maxdeletedmsg;
910 vmu->volgain = volgain;
911 vmu->emailsubject = NULL;
912 vmu->emailbody = NULL;
914 ast_copy_string(vmu->imapfolder, imapfolder, sizeof(vmu->imapfolder));
919 * \brief Sets a a specific property value.
920 * \param vmu The voicemail user object to work with.
921 * \param var The name of the property to be set.
922 * \param value The value to be set to the property.
924 * The property name must be one of the understood properties. See the source for details.
926 static void apply_option(struct ast_vm_user *vmu, const char *var, const char *value)
929 if (!strcasecmp(var, "attach")) {
930 ast_set2_flag(vmu, ast_true(value), VM_ATTACH);
931 } else if (!strcasecmp(var, "attachfmt")) {
932 ast_copy_string(vmu->attachfmt, value, sizeof(vmu->attachfmt));
933 } else if (!strcasecmp(var, "serveremail")) {
934 ast_copy_string(vmu->serveremail, value, sizeof(vmu->serveremail));
935 } else if (!strcasecmp(var, "language")) {
936 ast_copy_string(vmu->language, value, sizeof(vmu->language));
937 } else if (!strcasecmp(var, "tz")) {
938 ast_copy_string(vmu->zonetag, value, sizeof(vmu->zonetag));
940 } else if (!strcasecmp(var, "imapuser")) {
941 ast_copy_string(vmu->imapuser, value, sizeof(vmu->imapuser));
942 vmu->imapversion = imapversion;
943 } else if (!strcasecmp(var, "imappassword") || !strcasecmp(var, "imapsecret")) {
944 ast_copy_string(vmu->imappassword, value, sizeof(vmu->imappassword));
945 vmu->imapversion = imapversion;
946 } else if (!strcasecmp(var, "imapfolder")) {
947 ast_copy_string(vmu->imapfolder, value, sizeof(vmu->imapfolder));
948 } else if (!strcasecmp(var, "imapvmshareid")) {
949 ast_copy_string(vmu->imapvmshareid, value, sizeof(vmu->imapvmshareid));
950 vmu->imapversion = imapversion;
952 } else if (!strcasecmp(var, "delete") || !strcasecmp(var, "deletevoicemail")) {
953 ast_set2_flag(vmu, ast_true(value), VM_DELETE);
954 } else if (!strcasecmp(var, "saycid")){
955 ast_set2_flag(vmu, ast_true(value), VM_SAYCID);
956 } else if (!strcasecmp(var, "sendvoicemail")){
957 ast_set2_flag(vmu, ast_true(value), VM_SVMAIL);
958 } else if (!strcasecmp(var, "review")){
959 ast_set2_flag(vmu, ast_true(value), VM_REVIEW);
960 } else if (!strcasecmp(var, "tempgreetwarn")){
961 ast_set2_flag(vmu, ast_true(value), VM_TEMPGREETWARN);
962 } else if (!strcasecmp(var, "messagewrap")){
963 ast_set2_flag(vmu, ast_true(value), VM_MESSAGEWRAP);
964 } else if (!strcasecmp(var, "operator")) {
965 ast_set2_flag(vmu, ast_true(value), VM_OPERATOR);
966 } else if (!strcasecmp(var, "envelope")){
967 ast_set2_flag(vmu, ast_true(value), VM_ENVELOPE);
968 } else if (!strcasecmp(var, "moveheard")){
969 ast_set2_flag(vmu, ast_true(value), VM_MOVEHEARD);
970 } else if (!strcasecmp(var, "sayduration")){
971 ast_set2_flag(vmu, ast_true(value), VM_SAYDURATION);
972 } else if (!strcasecmp(var, "saydurationm")){
973 if (sscanf(value, "%30d", &x) == 1) {
974 vmu->saydurationm = x;
976 ast_log(AST_LOG_WARNING, "Invalid min duration for say duration\n");
978 } else if (!strcasecmp(var, "forcename")){
979 ast_set2_flag(vmu, ast_true(value), VM_FORCENAME);
980 } else if (!strcasecmp(var, "forcegreetings")){
981 ast_set2_flag(vmu, ast_true(value), VM_FORCEGREET);
982 } else if (!strcasecmp(var, "callback")) {
983 ast_copy_string(vmu->callback, value, sizeof(vmu->callback));
984 } else if (!strcasecmp(var, "dialout")) {
985 ast_copy_string(vmu->dialout, value, sizeof(vmu->dialout));
986 } else if (!strcasecmp(var, "exitcontext")) {
987 ast_copy_string(vmu->exit, value, sizeof(vmu->exit));
988 } else if (!strcasecmp(var, "maxmessage") || !strcasecmp(var, "maxsecs")) {
989 vmu->maxsecs = atoi(value);
990 if (vmu->maxsecs <= 0) {
991 ast_log(AST_LOG_WARNING, "Invalid max message length of %s. Using global value %d\n", value, vmmaxsecs);
992 vmu->maxsecs = vmmaxsecs;
994 vmu->maxsecs = atoi(value);
996 if (!strcasecmp(var, "maxmessage"))
997 ast_log(AST_LOG_WARNING, "Option 'maxmessage' has been deprecated in favor of 'maxsecs'. Please make that change in your voicemail config.\n");
998 } else if (!strcasecmp(var, "maxmsg")) {
999 vmu->maxmsg = atoi(value);
1000 /* Accept maxmsg=0 (Greetings only voicemail) */
1001 if (vmu->maxmsg < 0) {
1002 ast_log(AST_LOG_WARNING, "Invalid number of messages per folder maxmsg=%s. Using default value %d\n", value, MAXMSG);
1003 vmu->maxmsg = MAXMSG;
1004 } else if (vmu->maxmsg > MAXMSGLIMIT) {
1005 ast_log(AST_LOG_WARNING, "Maximum number of messages per folder is %d. Cannot accept value maxmsg=%s\n", MAXMSGLIMIT, value);
1006 vmu->maxmsg = MAXMSGLIMIT;
1008 } else if (!strcasecmp(var, "backupdeleted")) {
1009 if (sscanf(value, "%30d", &x) == 1)
1010 vmu->maxdeletedmsg = x;
1011 else if (ast_true(value))
1012 vmu->maxdeletedmsg = MAXMSG;
1014 vmu->maxdeletedmsg = 0;
1016 if (vmu->maxdeletedmsg < 0) {
1017 ast_log(AST_LOG_WARNING, "Invalid number of deleted messages saved per mailbox backupdeleted=%s. Using default value %d\n", value, MAXMSG);
1018 vmu->maxdeletedmsg = MAXMSG;
1019 } else if (vmu->maxdeletedmsg > MAXMSGLIMIT) {
1020 ast_log(AST_LOG_WARNING, "Maximum number of deleted messages saved per mailbox is %d. Cannot accept value backupdeleted=%s\n", MAXMSGLIMIT, value);
1021 vmu->maxdeletedmsg = MAXMSGLIMIT;
1023 } else if (!strcasecmp(var, "volgain")) {
1024 sscanf(value, "%30lf", &vmu->volgain);
1025 } else if (!strcasecmp(var, "passwordlocation")) {
1026 if (!strcasecmp(value, "spooldir")) {
1027 vmu->passwordlocation = OPT_PWLOC_SPOOLDIR;
1029 vmu->passwordlocation = OPT_PWLOC_VOICEMAILCONF;
1031 } else if (!strcasecmp(var, "options")) {
1032 apply_options(vmu, value);
1036 static char *vm_check_password_shell(char *command, char *buf, size_t len)
1038 int fds[2], pid = 0;
1040 memset(buf, 0, len);
1043 snprintf(buf, len, "FAILURE: Pipe failed: %s", strerror(errno));
1046 pid = ast_safe_fork(0);
1052 snprintf(buf, len, "FAILURE: Fork failed");
1056 if (read(fds[0], buf, len) < 0) {
1057 ast_log(LOG_WARNING, "read() failed: %s\n", strerror(errno));
1062 AST_DECLARE_APP_ARGS(arg,
1065 char *mycmd = ast_strdupa(command);
1068 dup2(fds[1], STDOUT_FILENO);
1070 ast_close_fds_above_n(STDOUT_FILENO);
1072 AST_NONSTANDARD_APP_ARGS(arg, mycmd, ' ');
1074 execv(arg.v[0], arg.v);
1075 printf("FAILURE: %s", strerror(errno));
1083 * \brief Check that password meets minimum required length
1084 * \param vmu The voicemail user to change the password for.
1085 * \param password The password string to check
1087 * \return zero on ok, 1 on not ok.
1089 static int check_password(struct ast_vm_user *vmu, char *password)
1091 /* check minimum length */
1092 if (strlen(password) < minpassword)
1094 if (!ast_strlen_zero(ext_pass_check_cmd)) {
1095 char cmd[255], buf[255];
1097 ast_log(AST_LOG_DEBUG, "Verify password policies for %s\n", password);
1099 snprintf(cmd, sizeof(cmd), "%s %s %s %s %s", ext_pass_check_cmd, vmu->mailbox, vmu->context, vmu->password, password);
1100 if (vm_check_password_shell(cmd, buf, sizeof(buf))) {
1101 ast_debug(5, "Result: %s\n", buf);
1102 if (!strncasecmp(buf, "VALID", 5)) {
1103 ast_debug(3, "Passed password check: '%s'\n", buf);
1105 } else if (!strncasecmp(buf, "FAILURE", 7)) {
1106 ast_log(AST_LOG_WARNING, "Unable to execute password validation script: '%s'.\n", buf);
1109 ast_log(AST_LOG_NOTICE, "Password doesn't match policies for user %s %s\n", vmu->mailbox, password);
1118 * \brief Performs a change of the voicemail passowrd in the realtime engine.
1119 * \param vmu The voicemail user to change the password for.
1120 * \param password The new value to be set to the password for this user.
1122 * This only works if there is a realtime engine configured.
1123 * This is called from the (top level) vm_change_password.
1125 * \return zero on success, -1 on error.
1127 static int change_password_realtime(struct ast_vm_user *vmu, const char *password)
1130 if (!strcmp(vmu->password, password)) {
1131 /* No change (but an update would return 0 rows updated, so we opt out here) */
1135 if (strlen(password) > 10) {
1136 ast_realtime_require_field("voicemail", "password", RQ_CHAR, strlen(password), SENTINEL);
1138 if (ast_update2_realtime("voicemail", "context", vmu->context, "mailbox", vmu->mailbox, SENTINEL, "password", password, SENTINEL) > 0) {
1139 ast_copy_string(vmu->password, password, sizeof(vmu->password));
1146 * \brief Destructively Parse options and apply.
1148 static void apply_options(struct ast_vm_user *vmu, const char *options)
1153 stringp = ast_strdupa(options);
1154 while ((s = strsep(&stringp, "|"))) {
1156 if ((var = strsep(&value, "=")) && value) {
1157 apply_option(vmu, var, value);
1163 * \brief Loads the options specific to a voicemail user.
1165 * This is called when a vm_user structure is being set up, such as from load_options.
1167 static void apply_options_full(struct ast_vm_user *retval, struct ast_variable *var)
1169 for (; var; var = var->next) {
1170 if (!strcasecmp(var->name, "vmsecret")) {
1171 ast_copy_string(retval->password, var->value, sizeof(retval->password));
1172 } else if (!strcasecmp(var->name, "secret") || !strcasecmp(var->name, "password")) { /* don't overwrite vmsecret if it exists */
1173 if (ast_strlen_zero(retval->password))
1174 ast_copy_string(retval->password, var->value, sizeof(retval->password));
1175 } else if (!strcasecmp(var->name, "uniqueid")) {
1176 ast_copy_string(retval->uniqueid, var->value, sizeof(retval->uniqueid));
1177 } else if (!strcasecmp(var->name, "pager")) {
1178 ast_copy_string(retval->pager, var->value, sizeof(retval->pager));
1179 } else if (!strcasecmp(var->name, "email")) {
1180 ast_copy_string(retval->email, var->value, sizeof(retval->email));
1181 } else if (!strcasecmp(var->name, "fullname")) {
1182 ast_copy_string(retval->fullname, var->value, sizeof(retval->fullname));
1183 } else if (!strcasecmp(var->name, "context")) {
1184 ast_copy_string(retval->context, var->value, sizeof(retval->context));
1185 } else if (!strcasecmp(var->name, "emailsubject")) {
1186 retval->emailsubject = ast_strdup(var->value);
1187 } else if (!strcasecmp(var->name, "emailbody")) {
1188 retval->emailbody = ast_strdup(var->value);
1190 } else if (!strcasecmp(var->name, "imapuser")) {
1191 ast_copy_string(retval->imapuser, var->value, sizeof(retval->imapuser));
1192 retval->imapversion = imapversion;
1193 } else if (!strcasecmp(var->name, "imappassword") || !strcasecmp(var->name, "imapsecret")) {
1194 ast_copy_string(retval->imappassword, var->value, sizeof(retval->imappassword));
1195 retval->imapversion = imapversion;
1196 } else if (!strcasecmp(var->name, "imapfolder")) {
1197 ast_copy_string(retval->imapfolder, var->value, sizeof(retval->imapfolder));
1198 } else if (!strcasecmp(var->name, "imapvmshareid")) {
1199 ast_copy_string(retval->imapvmshareid, var->value, sizeof(retval->imapvmshareid));
1200 retval->imapversion = imapversion;
1203 apply_option(retval, var->name, var->value);
1208 * \brief Determines if a DTMF key entered is valid.
1209 * \param key The character to be compared. expects a single character. Though is capable of handling a string, this is internally copies using ast_strdupa.
1211 * Tests the character entered against the set of valid DTMF characters.
1212 * \return 1 if the character entered is a valid DTMF digit, 0 if the character is invalid.
1214 static int is_valid_dtmf(const char *key)
1217 char *local_key = ast_strdupa(key);
1219 for (i = 0; i < strlen(key); ++i) {
1220 if (!strchr(VALID_DTMF, *local_key)) {
1221 ast_log(AST_LOG_WARNING, "Invalid DTMF key \"%c\" used in voicemail configuration file\n", *local_key);
1230 * \brief Finds a voicemail user from the realtime engine.
1235 * This is called as a fall through case when the normal find_user() was not able to find a user. That is, the default it so look in the usual voicemail users file first.
1237 * \return The ast_vm_user structure for the user that was found.
1239 static struct ast_vm_user *find_user_realtime(struct ast_vm_user *ivm, const char *context, const char *mailbox)
1241 struct ast_variable *var;
1242 struct ast_vm_user *retval;
1244 if ((retval = (ivm ? ivm : ast_calloc(1, sizeof(*retval))))) {
1246 ast_set_flag(retval, VM_ALLOCED);
1248 memset(retval, 0, sizeof(*retval));
1250 ast_copy_string(retval->mailbox, mailbox, sizeof(retval->mailbox));
1251 populate_defaults(retval);
1252 if (!context && ast_test_flag((&globalflags), VM_SEARCH))
1253 var = ast_load_realtime("voicemail", "mailbox", mailbox, SENTINEL);
1255 var = ast_load_realtime("voicemail", "mailbox", mailbox, "context", context, SENTINEL);
1257 apply_options_full(retval, var);
1258 ast_variables_destroy(var);
1269 * \brief Finds a voicemail user from the users file or the realtime engine.
1274 * \return The ast_vm_user structure for the user that was found.
1276 static struct ast_vm_user *find_user(struct ast_vm_user *ivm, const char *context, const char *mailbox)
1278 /* This function could be made to generate one from a database, too */
1279 struct ast_vm_user *vmu = NULL, *cur;
1280 AST_LIST_LOCK(&users);
1282 if (!context && !ast_test_flag((&globalflags), VM_SEARCH))
1283 context = "default";
1285 AST_LIST_TRAVERSE(&users, cur, list) {
1287 if (cur->imapversion != imapversion) {
1291 if (ast_test_flag((&globalflags), VM_SEARCH) && !strcasecmp(mailbox, cur->mailbox))
1293 if (context && (!strcasecmp(context, cur->context)) && (!strcasecmp(mailbox, cur->mailbox)))
1297 /* Make a copy, so that on a reload, we have no race */
1298 if ((vmu = (ivm ? ivm : ast_malloc(sizeof(*vmu))))) {
1299 memcpy(vmu, cur, sizeof(*vmu));
1300 ast_set2_flag(vmu, !ivm, VM_ALLOCED);
1301 AST_LIST_NEXT(vmu, list) = NULL;
1304 vmu = find_user_realtime(ivm, context, mailbox);
1305 AST_LIST_UNLOCK(&users);
1310 * \brief Resets a user password to a specified password.
1315 * This does the actual change password work, called by the vm_change_password() function.
1317 * \return zero on success, -1 on error.
1319 static int reset_user_pw(const char *context, const char *mailbox, const char *newpass)
1321 /* This function could be made to generate one from a database, too */
1322 struct ast_vm_user *cur;
1324 AST_LIST_LOCK(&users);
1325 AST_LIST_TRAVERSE(&users, cur, list) {
1326 if ((!context || !strcasecmp(context, cur->context)) &&
1327 (!strcasecmp(mailbox, cur->mailbox)))
1331 ast_copy_string(cur->password, newpass, sizeof(cur->password));
1334 AST_LIST_UNLOCK(&users);
1339 * \brief The handler for the change password option.
1340 * \param vmu The voicemail user to work with.
1341 * \param newpassword The new password (that has been gathered from the appropriate prompting).
1342 * This is called when a new user logs in for the first time and the option to force them to change their password is set.
1343 * It is also called when the user wants to change their password from menu option '5' on the mailbox options menu.
1345 static void vm_change_password(struct ast_vm_user *vmu, const char *newpassword)
1347 struct ast_config *cfg = NULL;
1348 struct ast_variable *var = NULL;
1349 struct ast_category *cat = NULL;
1350 char *category = NULL, *value = NULL, *new = NULL;
1351 const char *tmp = NULL;
1352 struct ast_flags config_flags = { CONFIG_FLAG_WITHCOMMENTS };
1353 char secretfn[PATH_MAX] = "";
1356 if (!change_password_realtime(vmu, newpassword))
1359 /* check if we should store the secret in the spool directory next to the messages */
1360 switch (vmu->passwordlocation) {
1361 case OPT_PWLOC_SPOOLDIR:
1362 snprintf(secretfn, sizeof(secretfn), "%s%s/%s/secret.conf", VM_SPOOL_DIR, vmu->context, vmu->mailbox);
1363 if (write_password_to_file(secretfn, newpassword) == 0) {
1364 ast_verb(4, "Writing voicemail password to file %s succeeded\n", secretfn);
1365 reset_user_pw(vmu->context, vmu->mailbox, newpassword);
1366 ast_copy_string(vmu->password, newpassword, sizeof(vmu->password));
1369 ast_verb(4, "Writing voicemail password to file %s failed, falling back to config file\n", secretfn);
1372 case OPT_PWLOC_VOICEMAILCONF:
1373 if ((cfg = ast_config_load(VOICEMAIL_CONFIG, config_flags)) && cfg != CONFIG_STATUS_FILEINVALID) {
1374 while ((category = ast_category_browse(cfg, category))) {
1375 if (!strcasecmp(category, vmu->context)) {
1376 if (!(tmp = ast_variable_retrieve(cfg, category, vmu->mailbox))) {
1377 ast_log(AST_LOG_WARNING, "We could not find the mailbox.\n");
1380 value = strstr(tmp, ",");
1382 ast_log(AST_LOG_WARNING, "variable has bad format.\n");
1385 new = alloca((strlen(value) + strlen(newpassword) + 1));
1386 sprintf(new, "%s%s", newpassword, value);
1387 if (!(cat = ast_category_get(cfg, category))) {
1388 ast_log(AST_LOG_WARNING, "Failed to get category structure.\n");
1391 ast_variable_update(cat, vmu->mailbox, new, NULL, 0);
1395 /* save the results */
1397 reset_user_pw(vmu->context, vmu->mailbox, newpassword);
1398 ast_copy_string(vmu->password, newpassword, sizeof(vmu->password));
1399 ast_config_text_file_save(VOICEMAIL_CONFIG, cfg, "AppVoicemail");
1404 case OPT_PWLOC_USERSCONF:
1405 /* check users.conf and update the password stored for the mailbox */
1406 /* if no vmsecret entry exists create one. */
1407 if ((cfg = ast_config_load("users.conf", config_flags)) && cfg != CONFIG_STATUS_FILEINVALID) {
1408 ast_debug(4, "we are looking for %s\n", vmu->mailbox);
1409 for (category = ast_category_browse(cfg, NULL); category; category = ast_category_browse(cfg, category)) {
1410 ast_debug(4, "users.conf: %s\n", category);
1411 if (!strcasecmp(category, vmu->mailbox)) {
1412 if (!(tmp = ast_variable_retrieve(cfg, category, "vmsecret"))) {
1413 ast_debug(3, "looks like we need to make vmsecret!\n");
1414 var = ast_variable_new("vmsecret", newpassword, "");
1418 new = alloca(strlen(newpassword) + 1);
1419 sprintf(new, "%s", newpassword);
1420 if (!(cat = ast_category_get(cfg, category))) {
1421 ast_debug(4, "failed to get category!\n");
1426 ast_variable_update(cat, "vmsecret", new, NULL, 0);
1428 ast_variable_append(cat, var);
1434 /* save the results and clean things up */
1436 reset_user_pw(vmu->context, vmu->mailbox, newpassword);
1437 ast_copy_string(vmu->password, newpassword, sizeof(vmu->password));
1438 ast_config_text_file_save("users.conf", cfg, "AppVoicemail");
1444 static void vm_change_password_shell(struct ast_vm_user *vmu, char *newpassword)
1447 snprintf(buf, sizeof(buf), "%s %s %s %s", ext_pass_cmd, vmu->context, vmu->mailbox, newpassword);
1448 if (!ast_safe_system(buf)) {
1449 ast_copy_string(vmu->password, newpassword, sizeof(vmu->password));
1450 /* Reset the password in memory, too */
1451 reset_user_pw(vmu->context, vmu->mailbox, newpassword);
1456 * \brief Creates a file system path expression for a folder within the voicemail data folder and the appropriate context.
1457 * \param dest The variable to hold the output generated path expression. This buffer should be of size PATH_MAX.
1458 * \param len The length of the path string that was written out.
1460 * The path is constructed as
1461 * VM_SPOOL_DIRcontext/ext/folder
1463 * \return zero on success, -1 on error.
1465 static int make_dir(char *dest, int len, const char *context, const char *ext, const char *folder)
1467 return snprintf(dest, len, "%s%s/%s/%s", VM_SPOOL_DIR, context, ext, folder);
1471 * \brief Creates a file system path expression for a folder within the voicemail data folder and the appropriate context.
1472 * \param dest The variable to hold the output generated path expression. This buffer should be of size PATH_MAX.
1473 * \param len The length of the path string that was written out.
1475 * The path is constructed as
1476 * VM_SPOOL_DIRcontext/ext/folder
1478 * \return zero on success, -1 on error.
1480 static int make_file(char *dest, const int len, const char *dir, const int num)
1482 return snprintf(dest, len, "%s/msg%04d", dir, num);
1485 /* same as mkstemp, but return a FILE * */
1486 static FILE *vm_mkftemp(char *template)
1489 int pfd = mkstemp(template);
1490 chmod(template, VOICEMAIL_FILE_MODE & ~my_umask);
1492 p = fdopen(pfd, "w+");
1501 /*! \brief basically mkdir -p $dest/$context/$ext/$folder
1502 * \param dest String. base directory.
1503 * \param len Length of dest.
1504 * \param context String. Ignored if is null or empty string.
1505 * \param ext String. Ignored if is null or empty string.
1506 * \param folder String. Ignored if is null or empty string.
1507 * \return -1 on failure, 0 on success.
1509 static int create_dirpath(char *dest, int len, const char *context, const char *ext, const char *folder)
1511 mode_t mode = VOICEMAIL_DIR_MODE;
1514 make_dir(dest, len, context, ext, folder);
1515 if ((res = ast_mkdir(dest, mode))) {
1516 ast_log(AST_LOG_WARNING, "ast_mkdir '%s' failed: %s\n", dest, strerror(res));
1522 static const char * const mailbox_folders[] = {
1541 static const char *mbox(struct ast_vm_user *vmu, int id)
1544 if (vmu && id == 0) {
1545 return vmu->imapfolder;
1548 return (id >= 0 && id < ARRAY_LEN(mailbox_folders)) ? mailbox_folders[id] : "Unknown";
1551 static int get_folder_by_name(const char *name)
1555 for (i = 0; i < ARRAY_LEN(mailbox_folders); i++) {
1556 if (strcasecmp(name, mailbox_folders[i]) == 0) {
1564 static void free_user(struct ast_vm_user *vmu)
1566 if (ast_test_flag(vmu, VM_ALLOCED)) {
1567 if (vmu->emailbody != NULL) {
1568 ast_free(vmu->emailbody);
1569 vmu->emailbody = NULL;
1571 if (vmu->emailsubject != NULL) {
1572 ast_free(vmu->emailsubject);
1573 vmu->emailsubject = NULL;
1579 /* All IMAP-specific functions should go in this block. This
1580 * keeps them from being spread out all over the code */
1582 static void vm_imap_delete(char *file, int msgnum, struct ast_vm_user *vmu)
1585 struct vm_state *vms;
1586 unsigned long messageNum;
1588 /* If greetings aren't stored in IMAP, just delete the file */
1589 if (msgnum < 0 && !imapgreetings) {
1590 ast_filedelete(file, NULL);
1594 if (!(vms = get_vm_state_by_mailbox(vmu->mailbox, vmu->context, 1)) && !(vms = get_vm_state_by_mailbox(vmu->mailbox, vmu->context, 0))) {
1595 ast_log(LOG_WARNING, "Couldn't find a vm_state for mailbox %s. Unable to set \\DELETED flag for message %d\n", vmu->mailbox, msgnum);
1599 /* find real message number based on msgnum */
1600 /* this may be an index into vms->msgArray based on the msgnum. */
1601 messageNum = vms->msgArray[msgnum];
1602 if (messageNum == 0) {
1603 ast_log(LOG_WARNING, "msgnum %d, mailbox message %lu is zero.\n", msgnum, messageNum);
1606 if (option_debug > 2)
1607 ast_log(LOG_DEBUG, "deleting msgnum %d, which is mailbox message %lu\n", msgnum, messageNum);
1608 /* delete message */
1609 snprintf (arg, sizeof(arg), "%lu", messageNum);
1610 ast_mutex_lock(&vms->lock);
1611 mail_setflag (vms->mailstream, arg, "\\DELETED");
1612 mail_expunge(vms->mailstream);
1613 ast_mutex_unlock(&vms->lock);
1616 static int imap_retrieve_greeting(const char *dir, const int msgnum, struct ast_vm_user *vmu)
1618 struct vm_state *vms_p;
1619 char *file, *filename;
1624 /* This function is only used for retrieval of IMAP greetings
1625 * regular messages are not retrieved this way, nor are greetings
1626 * if they are stored locally*/
1627 if (msgnum > -1 || !imapgreetings) {
1630 file = strrchr(ast_strdupa(dir), '/');
1634 ast_debug (1, "Failed to procure file name from directory passed.\n");
1639 /* check if someone is accessing this box right now... */
1640 if (!(vms_p = get_vm_state_by_mailbox(vmu->mailbox, vmu->context, 1)) &&
1641 !(vms_p = get_vm_state_by_mailbox(vmu->mailbox, vmu->context, 0))) {
1642 /* Unlike when retrieving a message, it is reasonable not to be able to find a
1643 * vm_state for a mailbox when trying to retrieve a greeting. Just create one,
1644 * that's all we need to do.
1646 if (!(vms_p = create_vm_state_from_user(vmu))) {
1647 ast_log(LOG_NOTICE, "Unable to create vm_state object!\n");
1652 /* Greetings will never have a prepended message */
1653 *vms_p->introfn = '\0';
1655 ast_mutex_lock(&vms_p->lock);
1656 ret = init_mailstream(vms_p, GREETINGS_FOLDER);
1657 if (!vms_p->mailstream) {
1658 ast_log(AST_LOG_ERROR, "IMAP mailstream is NULL\n");
1659 ast_mutex_unlock(&vms_p->lock);
1663 /*XXX Yuck, this could probably be done a lot better */
1664 for (i = 0; i < vms_p->mailstream->nmsgs; i++) {
1665 mail_fetchstructure(vms_p->mailstream, i + 1, &body);
1666 /* We have the body, now we extract the file name of the first attachment. */
1667 if (body->nested.part && body->nested.part->next && body->nested.part->next->body.parameter->value) {
1668 attachment = ast_strdupa(body->nested.part->next->body.parameter->value);
1670 ast_log(AST_LOG_ERROR, "There is no file attached to this IMAP message.\n");
1671 ast_mutex_unlock(&vms_p->lock);
1674 filename = strsep(&attachment, ".");
1675 if (!strcmp(filename, file)) {
1676 ast_copy_string(vms_p->fn, dir, sizeof(vms_p->fn));
1677 vms_p->msgArray[vms_p->curmsg] = i + 1;
1678 save_body(body, vms_p, "2", attachment, 0);
1679 ast_mutex_unlock(&vms_p->lock);
1683 ast_mutex_unlock(&vms_p->lock);
1688 static int imap_retrieve_file(const char *dir, const int msgnum, const char *mailbox, const char *context)
1691 char *header_content;
1692 char *attachedfilefmt;
1694 struct vm_state *vms;
1695 char text_file[PATH_MAX];
1696 FILE *text_file_ptr;
1698 struct ast_vm_user *vmu;
1700 if (!(vmu = find_user(NULL, context, mailbox))) {
1701 ast_log(LOG_WARNING, "Couldn't find user with mailbox %s@%s\n", mailbox, context);
1706 if (imapgreetings) {
1707 res = imap_retrieve_greeting(dir, msgnum, vmu);
1715 /* Before anything can happen, we need a vm_state so that we can
1716 * actually access the imap server through the vms->mailstream
1718 if (!(vms = get_vm_state_by_mailbox(vmu->mailbox, vmu->context, 1)) && !(vms = get_vm_state_by_mailbox(vmu->mailbox, vmu->context, 0))) {
1719 /* This should not happen. If it does, then I guess we'd
1720 * need to create the vm_state, extract which mailbox to
1721 * open, and then set up the msgArray so that the correct
1722 * IMAP message could be accessed. If I have seen correctly
1723 * though, the vms should be obtainable from the vmstates list
1724 * and should have its msgArray properly set up.
1726 ast_log(LOG_ERROR, "Couldn't find a vm_state for mailbox %s!!! Oh no!\n", vmu->mailbox);
1731 make_file(vms->fn, sizeof(vms->fn), dir, msgnum);
1732 snprintf(vms->introfn, sizeof(vms->introfn), "%sintro", vms->fn);
1734 /* Don't try to retrieve a message from IMAP if it already is on the file system */
1735 if (ast_fileexists(vms->fn, NULL, NULL) > 0) {
1740 if (option_debug > 2)
1741 ast_log(LOG_DEBUG, "Before mail_fetchheaders, curmsg is: %d, imap messages is %lu\n", msgnum, vms->msgArray[msgnum]);
1742 if (vms->msgArray[msgnum] == 0) {
1743 ast_log(LOG_WARNING, "Trying to access unknown message\n");
1748 /* This will only work for new messages... */
1749 ast_mutex_lock(&vms->lock);
1750 header_content = mail_fetchheader (vms->mailstream, vms->msgArray[msgnum]);
1751 ast_mutex_unlock(&vms->lock);
1752 /* empty string means no valid header */
1753 if (ast_strlen_zero(header_content)) {
1754 ast_log(LOG_ERROR, "Could not fetch header for message number %ld\n", vms->msgArray[msgnum]);
1759 ast_mutex_lock(&vms->lock);
1760 mail_fetchstructure(vms->mailstream, vms->msgArray[msgnum], &body);
1761 ast_mutex_unlock(&vms->lock);
1763 /* We have the body, now we extract the file name of the first attachment. */
1764 if (body->nested.part && body->nested.part->next && body->nested.part->next->body.parameter->value) {
1765 attachedfilefmt = ast_strdupa(body->nested.part->next->body.parameter->value);
1767 ast_log(LOG_ERROR, "There is no file attached to this IMAP message.\n");
1772 /* Find the format of the attached file */
1774 strsep(&attachedfilefmt, ".");
1775 if (!attachedfilefmt) {
1776 ast_log(LOG_ERROR, "File format could not be obtained from IMAP message attachment\n");
1781 save_body(body, vms, "2", attachedfilefmt, 0);
1782 if (save_body(body, vms, "3", attachedfilefmt, 1)) {
1783 *vms->introfn = '\0';
1786 /* Get info from headers!! */
1787 snprintf(text_file, sizeof(text_file), "%s.%s", vms->fn, "txt");
1789 if (!(text_file_ptr = fopen(text_file, "w"))) {
1790 ast_log(LOG_WARNING, "Unable to open/create file %s: %s\n", text_file, strerror(errno));
1793 fprintf(text_file_ptr, "%s\n", "[message]");
1795 get_header_by_tag(header_content, "X-Asterisk-VM-Caller-ID-Name:", buf, sizeof(buf));
1796 fprintf(text_file_ptr, "callerid=\"%s\" ", S_OR(buf, ""));
1797 get_header_by_tag(header_content, "X-Asterisk-VM-Caller-ID-Num:", buf, sizeof(buf));
1798 fprintf(text_file_ptr, "<%s>\n", S_OR(buf, ""));
1799 get_header_by_tag(header_content, "X-Asterisk-VM-Context:", buf, sizeof(buf));
1800 fprintf(text_file_ptr, "context=%s\n", S_OR(buf, ""));
1801 get_header_by_tag(header_content, "X-Asterisk-VM-Orig-time:", buf, sizeof(buf));
1802 fprintf(text_file_ptr, "origtime=%s\n", S_OR(buf, ""));
1803 get_header_by_tag(header_content, "X-Asterisk-VM-Duration:", buf, sizeof(buf));
1804 fprintf(text_file_ptr, "duration=%s\n", S_OR(buf, ""));
1805 get_header_by_tag(header_content, "X-Asterisk-VM-Category:", buf, sizeof(buf));
1806 fprintf(text_file_ptr, "category=%s\n", S_OR(buf, ""));
1807 get_header_by_tag(header_content, "X-Asterisk-VM-Flag:", buf, sizeof(buf));
1808 fprintf(text_file_ptr, "flag=%s\n", S_OR(buf, ""));
1809 fclose(text_file_ptr);
1816 static int folder_int(const char *folder)
1818 /*assume a NULL folder means INBOX*/
1821 if (!strcasecmp(folder, imapfolder))
1823 else if (!strcasecmp(folder, "Old"))
1825 else if (!strcasecmp(folder, "Work"))
1827 else if (!strcasecmp(folder, "Family"))
1829 else if (!strcasecmp(folder, "Friends"))
1831 else if (!strcasecmp(folder, "Cust1"))
1833 else if (!strcasecmp(folder, "Cust2"))
1835 else if (!strcasecmp(folder, "Cust3"))
1837 else if (!strcasecmp(folder, "Cust4"))
1839 else if (!strcasecmp(folder, "Cust5"))
1841 else /*assume they meant INBOX if folder is not found otherwise*/
1846 * \brief Gets the number of messages that exist in a mailbox folder.
1851 * This method is used when IMAP backend is used.
1852 * \return The number of messages in this mailbox folder (zero or more).
1854 static int messagecount(const char *context, const char *mailbox, const char *folder)
1859 struct ast_vm_user *vmu, vmus;
1860 struct vm_state *vms_p;
1862 int fold = folder_int(folder);
1865 /* If URGENT, then look at INBOX */
1871 if (ast_strlen_zero(mailbox))
1874 /* We have to get the user before we can open the stream! */
1875 vmu = find_user(&vmus, context, mailbox);
1877 ast_log(AST_LOG_ERROR, "Couldn't find mailbox %s in context %s\n", mailbox, context);
1880 /* No IMAP account available */
1881 if (vmu->imapuser[0] == '\0') {
1882 ast_log(AST_LOG_WARNING, "IMAP user not set for mailbox %s\n", vmu->mailbox);
1887 /* No IMAP account available */
1888 if (vmu->imapuser[0] == '\0') {
1889 ast_log(AST_LOG_WARNING, "IMAP user not set for mailbox %s\n", vmu->mailbox);
1894 /* check if someone is accessing this box right now... */
1895 vms_p = get_vm_state_by_imapuser(vmu->imapuser, 1);
1897 vms_p = get_vm_state_by_mailbox(mailbox, context, 1);
1900 ast_debug(3, "Returning before search - user is logged in\n");
1901 if (fold == 0) { /* INBOX */
1902 return vms_p->newmessages;
1904 if (fold == 1) { /* Old messages */
1905 return vms_p->oldmessages;
1907 if (fold == 11) {/*Urgent messages*/
1908 return vms_p->urgentmessages;
1912 /* add one if not there... */
1913 vms_p = get_vm_state_by_imapuser(vmu->imapuser, 0);
1915 vms_p = get_vm_state_by_mailbox(mailbox, context, 0);
1919 vms_p = create_vm_state_from_user(vmu);
1921 ret = init_mailstream(vms_p, fold);
1922 if (!vms_p->mailstream) {
1923 ast_log(AST_LOG_ERROR, "Houston we have a problem - IMAP mailstream is NULL\n");
1927 ast_mutex_lock(&vms_p->lock);
1928 pgm = mail_newsearchpgm ();
1929 hdr = mail_newsearchheader ("X-Asterisk-VM-Extension", (char *)(!ast_strlen_zero(vmu->imapvmshareid) ? vmu->imapvmshareid : mailbox));
1930 hdr->next = mail_newsearchheader("X-Asterisk-VM-Context", (char *) S_OR(context, "default"));
1936 /* In the special case where fold is 1 (old messages) we have to do things a bit
1937 * differently. Old messages are stored in the INBOX but are marked as "seen"
1943 /* look for urgent messages */
1951 vms_p->vmArrayIndex = 0;
1952 mail_search_full (vms_p->mailstream, NULL, pgm, NIL);
1953 if (fold == 0 && urgent == 0)
1954 vms_p->newmessages = vms_p->vmArrayIndex;
1956 vms_p->oldmessages = vms_p->vmArrayIndex;
1957 if (fold == 0 && urgent == 1)
1958 vms_p->urgentmessages = vms_p->vmArrayIndex;
1959 /*Freeing the searchpgm also frees the searchhdr*/
1960 mail_free_searchpgm(&pgm);
1961 ast_mutex_unlock(&vms_p->lock);
1963 return vms_p->vmArrayIndex;
1965 ast_mutex_lock(&vms_p->lock);
1966 mail_ping(vms_p->mailstream);
1967 ast_mutex_unlock(&vms_p->lock);
1972 static int imap_store_file(char *dir, char *mailboxuser, char *mailboxcontext, int msgnum, struct ast_channel *chan, struct ast_vm_user *vmu, char *fmt, int duration, struct vm_state *vms, const char *flag)
1974 char *myserveremail = serveremail;
1976 char introfn[PATH_MAX];
1980 char tmp[80] = "/tmp/astmail-XXXXXX";
1985 int ret; /* for better error checking */
1986 char *imap_flags = NIL;
1988 /* Back out early if this is a greeting and we don't want to store greetings in IMAP */
1989 if (msgnum < 0 && !imapgreetings) {
1993 /* Set urgent flag for IMAP message */
1994 if (!ast_strlen_zero(flag) && !strcmp(flag, "Urgent")) {
1995 ast_debug(3, "Setting message flag \\\\FLAGGED.\n");
1996 imap_flags = "\\FLAGGED";
1999 /* Attach only the first format */
2000 fmt = ast_strdupa(fmt);
2002 strsep(&stringp, "|");
2004 if (!ast_strlen_zero(vmu->serveremail))
2005 myserveremail = vmu->serveremail;
2008 make_file(fn, sizeof(fn), dir, msgnum);
2010 ast_copy_string (fn, dir, sizeof(fn));
2012 snprintf(introfn, sizeof(introfn), "%sintro", fn);
2013 if (ast_fileexists(introfn, NULL, NULL) <= 0) {
2017 if (ast_strlen_zero(vmu->email)) {
2018 /* We need the vmu->email to be set when we call make_email_file, but
2019 * if we keep it set, a duplicate e-mail will be created. So at the end
2020 * of this function, we will revert back to an empty string if tempcopy
2023 ast_copy_string(vmu->email, vmu->imapuser, sizeof(vmu->email));
2027 if (!strcmp(fmt, "wav49"))
2029 ast_debug(3, "Storing file '%s', format '%s'\n", fn, fmt);
2031 /* Make a temporary file instead of piping directly to sendmail, in case the mail
2033 if (!(p = vm_mkftemp(tmp))) {
2034 ast_log(AST_LOG_WARNING, "Unable to store '%s' (can't create temporary file)\n", fn);
2036 *(vmu->email) = '\0';
2040 if (msgnum < 0 && imapgreetings) {
2041 if ((ret = init_mailstream(vms, GREETINGS_FOLDER))) {
2042 ast_log(AST_LOG_WARNING, "Unable to open mailstream.\n");
2045 imap_delete_old_greeting(fn, vms);
2048 make_email_file(p, myserveremail, vmu, msgnum, vmu->context, vmu->mailbox, "INBOX", S_OR(chan->cid.cid_num, NULL), S_OR(chan->cid.cid_name, NULL), fn, introfn, fmt, duration, 1, chan, NULL, 1, flag);
2049 /* read mail file to memory */
2052 if (!(buf = ast_malloc(len + 1))) {
2053 ast_log(AST_LOG_ERROR, "Can't allocate %ld bytes to read message\n", len + 1);
2056 *(vmu->email) = '\0';
2059 if (fread(buf, len, 1, p) < len) {
2061 ast_log(LOG_ERROR, "Short read while reading in mail file.\n");
2065 ((char *) buf)[len] = '\0';
2066 INIT(&str, mail_string, buf, len);
2067 ret = init_mailstream(vms, NEW_FOLDER);
2069 imap_mailbox_name(mailbox, sizeof(mailbox), vms, NEW_FOLDER, 1);
2070 ast_mutex_lock(&vms->lock);
2071 if(!mail_append_full(vms->mailstream, mailbox, imap_flags, NIL, &str))
2072 ast_log(LOG_ERROR, "Error while sending the message to %s\n", mailbox);
2073 ast_mutex_unlock(&vms->lock);
2078 ast_log(LOG_ERROR, "Could not initialize mailstream for %s\n", mailbox);
2084 ast_debug(3, "%s stored\n", fn);
2087 *(vmu->email) = '\0';
2094 * \brief Gets the number of messages that exist in the inbox folder.
2095 * \param mailbox_context
2096 * \param newmsgs The variable that is updated with the count of new messages within this inbox.
2097 * \param oldmsgs The variable that is updated with the count of old messages within this inbox.
2098 * \param urgentmsgs The variable that is updated with the count of urgent messages within this inbox.
2100 * This method is used when IMAP backend is used.
2101 * Simultaneously determines the count of new,old, and urgent messages. The total messages would then be the sum of these three.
2103 * \return zero on success, -1 on error.
2106 static int inboxcount2(const char *mailbox_context, int *urgentmsgs, int *newmsgs, int *oldmsgs)
2108 char tmp[PATH_MAX] = "";
2120 ast_debug(3, "Mailbox is set to %s\n", mailbox_context);
2121 /* If no mailbox, return immediately */
2122 if (ast_strlen_zero(mailbox_context))
2125 ast_copy_string(tmp, mailbox_context, sizeof(tmp));
2126 context = strchr(tmp, '@');
2127 if (strchr(mailbox_context, ',')) {
2128 int tmpnew, tmpold, tmpurgent;
2129 ast_copy_string(tmp, mailbox_context, sizeof(tmp));
2131 while ((cur = strsep(&mb, ", "))) {
2132 if (!ast_strlen_zero(cur)) {
2133 if (inboxcount2(cur, urgentmsgs ? &tmpurgent : NULL, newmsgs ? &tmpnew : NULL, oldmsgs ? &tmpold : NULL))
2141 *urgentmsgs += tmpurgent;
2152 context = "default";
2153 mailboxnc = (char *) mailbox_context;
2157 struct ast_vm_user *vmu = find_user(NULL, context, mailboxnc);
2159 ast_log(AST_LOG_ERROR, "Couldn't find mailbox %s in context %s\n", mailboxnc, context);
2162 if ((*newmsgs = messagecount(context, mailboxnc, vmu->imapfolder)) < 0)
2166 if ((*oldmsgs = messagecount(context, mailboxnc, "Old")) < 0)
2170 if((*urgentmsgs = messagecount(context, mailboxnc, "Urgent")) < 0)
2176 static int inboxcount(const char *mailbox_context, int *newmsgs, int *oldmsgs)
2178 return inboxcount2(mailbox_context, NULL, newmsgs, oldmsgs);
2182 * \brief Determines if the given folder has messages.
2183 * \param mailbox The @ delimited string for user@context. If no context is found, uses 'default' for the context.
2184 * \param folder the folder to look in
2186 * This function is used when the mailbox is stored in an IMAP back end.
2187 * This invokes the messagecount(). Here we are interested in the presence of messages (> 0) only, not the actual count.
2188 * \return 1 if the folder has one or more messages. zero otherwise.
2191 static int has_voicemail(const char *mailbox, const char *folder)
2193 char tmp[256], *tmp2, *box, *context;
2194 ast_copy_string(tmp, mailbox, sizeof(tmp));
2196 if (strchr(tmp2, ',')) {
2197 while ((box = strsep(&tmp2, ","))) {
2198 if (!ast_strlen_zero(box)) {
2199 if (has_voicemail(box, folder))
2204 if ((context = strchr(tmp, '@')))
2207 context = "default";
2208 return messagecount(context, tmp, folder) ? 1 : 0;
2212 * \brief Copies a message from one mailbox to another.
2222 * This works with IMAP storage based mailboxes.
2224 * \return zero on success, -1 on error.
2226 static int copy_message(struct ast_channel *chan, struct ast_vm_user *vmu, int imbox, int msgnum, long duration, struct ast_vm_user *recip, char *fmt, char *dir, char *flag)
2228 struct vm_state *sendvms = NULL, *destvms = NULL;
2229 char messagestring[10]; /*I guess this could be a problem if someone has more than 999999999 messages...*/
2230 if (msgnum >= recip->maxmsg) {
2231 ast_log(LOG_WARNING, "Unable to copy mail, mailbox %s is full\n", recip->mailbox);
2234 if (!(sendvms = get_vm_state_by_imapuser(vmu->imapuser, 0))) {
2235 ast_log(LOG_ERROR, "Couldn't get vm_state for originator's mailbox!!\n");
2238 if (!(destvms = get_vm_state_by_imapuser(recip->imapuser, 0))) {
2239 ast_log(LOG_ERROR, "Couldn't get vm_state for destination mailbox!\n");
2242 snprintf(messagestring, sizeof(messagestring), "%ld", sendvms->msgArray[msgnum]);
2243 ast_mutex_lock(&sendvms->lock);
2244 if ((mail_copy(sendvms->mailstream, messagestring, (char *) mbox(vmu, imbox)) == T)) {
2245 ast_mutex_unlock(&sendvms->lock);
2248 ast_mutex_unlock(&sendvms->lock);
2249 ast_log(LOG_WARNING, "Unable to copy message from mailbox %s to mailbox %s\n", vmu->mailbox, recip->mailbox);
2253 static void imap_mailbox_name(char *spec, size_t len, struct vm_state *vms, int box, int use_folder)
2255 char tmp[256], *t = tmp;
2256 size_t left = sizeof(tmp);
2258 if (box == OLD_FOLDER) {
2259 ast_copy_string(vms->curbox, mbox(NULL, NEW_FOLDER), sizeof(vms->curbox));
2261 ast_copy_string(vms->curbox, mbox(NULL, box), sizeof(vms->curbox));
2264 if (box == NEW_FOLDER) {
2265 ast_copy_string(vms->vmbox, "vm-INBOX", sizeof(vms->vmbox));
2267 snprintf(vms->vmbox, sizeof(vms->vmbox), "vm-%s", mbox(NULL, box));
2270 /* Build up server information */
2271 ast_build_string(&t, &left, "{%s:%s/imap", imapserver, imapport);
2273 /* Add authentication user if present */
2274 if (!ast_strlen_zero(authuser))
2275 ast_build_string(&t, &left, "/authuser=%s", authuser);
2277 /* Add flags if present */
2278 if (!ast_strlen_zero(imapflags))
2279 ast_build_string(&t, &left, "/%s", imapflags);
2281 /* End with username */
2283 ast_build_string(&t, &left, "/user=%s}", vms->imapuser);
2285 ast_build_string(&t, &left, "/user=%s/novalidate-cert}", vms->imapuser);
2287 if (box == NEW_FOLDER || box == OLD_FOLDER)
2288 snprintf(spec, len, "%s%s", tmp, use_folder? vms->imapfolder: "INBOX");
2289 else if (box == GREETINGS_FOLDER)
2290 snprintf(spec, len, "%s%s", tmp, greetingfolder);
2291 else { /* Other folders such as Friends, Family, etc... */
2292 if (!ast_strlen_zero(imapparentfolder)) {
2293 /* imapparentfolder would typically be set to INBOX */
2294 snprintf(spec, len, "%s%s%c%s", tmp, imapparentfolder, delimiter, mbox(NULL, box));
2296 snprintf(spec, len, "%s%s", tmp, mbox(NULL, box));
2301 static int init_mailstream(struct vm_state *vms, int box)
2303 MAILSTREAM *stream = NIL;
2308 ast_log(LOG_ERROR, "vm_state is NULL!\n");
2311 if (option_debug > 2)
2312 ast_log(LOG_DEBUG, "vm_state user is:%s\n", vms->imapuser);
2313 if (vms->mailstream == NIL || !vms->mailstream) {
2315 ast_log(LOG_DEBUG, "mailstream not set.\n");
2317 stream = vms->mailstream;
2319 /* debug = T; user wants protocol telemetry? */
2320 debug = NIL; /* NO protocol telemetry? */
2322 if (delimiter == '\0') { /* did not probe the server yet */
2324 #ifdef USE_SYSTEM_IMAP
2325 #include <imap/linkage.c>
2326 #elif defined(USE_SYSTEM_CCLIENT)
2327 #include <c-client/linkage.c>
2329 #include "linkage.c"
2331 /* Connect to INBOX first to get folders delimiter */
2332 imap_mailbox_name(tmp, sizeof(tmp), vms, 0, 1);
2333 ast_mutex_lock(&vms->lock);
2334 stream = mail_open (stream, tmp, debug ? OP_DEBUG : NIL);
2335 ast_mutex_unlock(&vms->lock);
2336 if (stream == NIL) {
2337 ast_log(LOG_ERROR, "Can't connect to imap server %s\n", tmp);
2340 get_mailbox_delimiter(stream);
2341 /* update delimiter in imapfolder */
2342 for (cp = vms->imapfolder; *cp; cp++)
2346 /* Now connect to the target folder */
2347 imap_mailbox_name(tmp, sizeof(tmp), vms, box, 1);
2348 if (option_debug > 2)
2349 ast_log(LOG_DEBUG, "Before mail_open, server: %s, box:%d\n", tmp, box);
2350 ast_mutex_lock(&vms->lock);
2351 vms->mailstream = mail_open (stream, tmp, debug ? OP_DEBUG : NIL);
2352 ast_mutex_unlock(&vms->lock);
2353 if (vms->mailstream == NIL) {
2360 static int open_mailbox(struct vm_state *vms, struct ast_vm_user *vmu, int box)
2364 int ret, urgent = 0;
2366 /* If Urgent, then look at INBOX */
2372 ast_copy_string(vms->imapuser, vmu->imapuser, sizeof(vms->imapuser));
2373 ast_copy_string(vms->imapfolder, vmu->imapfolder, sizeof(vms->imapfolder));
2374 vms->imapversion = vmu->imapversion;
2375 ast_debug(3, "Before init_mailstream, user is %s\n", vmu->imapuser);
2377 if ((ret = init_mailstream(vms, box)) || !vms->mailstream) {
2378 ast_log(AST_LOG_ERROR, "Could not initialize mailstream\n");
2382 create_dirpath(vms->curdir, sizeof(vms->curdir), vmu->context, vms->username, vms->curbox);
2386 ast_debug(3, "Mailbox name set to: %s, about to check quotas\n", mbox(vmu, box));
2387 check_quota(vms, (char *) mbox(vmu, box));
2390 ast_mutex_lock(&vms->lock);
2391 pgm = mail_newsearchpgm();
2393 /* Check IMAP folder for Asterisk messages only... */
2394 hdr = mail_newsearchheader("X-Asterisk-VM-Extension", (!ast_strlen_zero(vmu->imapvmshareid) ? vmu->imapvmshareid : vmu->mailbox));
2395 hdr->next = mail_newsearchheader("X-Asterisk-VM-Context", vmu->context);
2400 /* if box = NEW_FOLDER, check for new, if box = OLD_FOLDER, check for read */
2401 if (box == NEW_FOLDER && urgent == 1) {
2406 } else if (box == NEW_FOLDER && urgent == 0) {
2411 } else if (box == OLD_FOLDER) {
2416 ast_debug(3, "Before mail_search_full, user is %s\n", vmu->imapuser);
2418 vms->vmArrayIndex = 0;
2419 mail_search_full (vms->mailstream, NULL, pgm, NIL);
2420 vms->lastmsg = vms->vmArrayIndex - 1;
2421 mail_free_searchpgm(&pgm);
2423 ast_mutex_unlock(&vms->lock);
2427 static void write_file(char *filename, char *buffer, unsigned long len)
2431 output = fopen (filename, "w");
2432 if (fwrite(buffer, len, 1, output) != 1) {
2433 if (ferror(output)) {
2434 ast_log(LOG_ERROR, "Short write while writing e-mail body: %s.\n", strerror(errno));
2440 static void update_messages_by_imapuser(const char *user, unsigned long number)
2442 struct vm_state *vms = get_vm_state_by_imapuser(user, 1);
2444 if (!vms && !(vms = get_vm_state_by_imapuser(user, 0))) {
2448 ast_debug(3, "saving mailbox message number %lu as message %d. Interactive set to %d\n", number, vms->vmArrayIndex, vms->interactive);
2449 vms->msgArray[vms->vmArrayIndex++] = number;
2452 void mm_searched(MAILSTREAM *stream, unsigned long number)
2454 char *mailbox = stream->mailbox, buf[1024] = "", *user;
2456 if (!(user = get_user_by_mailbox(mailbox, buf, sizeof(buf))))
2459 update_messages_by_imapuser(user, number);
2462 static struct ast_vm_user *find_user_realtime_imapuser(const char *imapuser)
2464 struct ast_variable *var;
2465 struct ast_vm_user *vmu;
2467 vmu = ast_calloc(1, sizeof *vmu);
2470 ast_set_flag(vmu, VM_ALLOCED);
2471 populate_defaults(vmu);
2473 var = ast_load_realtime("voicemail", "imapuser", imapuser, NULL);
2475 apply_options_full(vmu, var);
2476 ast_variables_destroy(var);
2484 /* Interfaces to C-client */
2486 void mm_exists(MAILSTREAM * stream, unsigned long number)
2488 /* mail_ping will callback here if new mail! */
2489 ast_debug(4, "Entering EXISTS callback for message %ld\n", number);
2490 if (number == 0) return;
2495 void mm_expunged(MAILSTREAM * stream, unsigned long number)
2497 /* mail_ping will callback here if expunged mail! */
2498 ast_debug(4, "Entering EXPUNGE callback for message %ld\n", number);
2499 if (number == 0) return;
2504 void mm_flags(MAILSTREAM * stream, unsigned long number)
2506 /* mail_ping will callback here if read mail! */
2507 ast_debug(4, "Entering FLAGS callback for message %ld\n", number);
2508 if (number == 0) return;
2513 void mm_notify(MAILSTREAM * stream, char *string, long errflg)
2515 ast_debug(5, "Entering NOTIFY callback, errflag is %ld, string is %s\n", errflg, string);
2516 mm_log (string, errflg);
2520 void mm_list(MAILSTREAM * stream, int delim, char *mailbox, long attributes)
2522 if (delimiter == '\0') {
2526 ast_debug(5, "Delimiter set to %c and mailbox %s\n", delim, mailbox);
2527 if (attributes & LATT_NOINFERIORS)
2528 ast_debug(5, "no inferiors\n");
2529 if (attributes & LATT_NOSELECT)
2530 ast_debug(5, "no select\n");
2531 if (attributes & LATT_MARKED)
2532 ast_debug(5, "marked\n");
2533 if (attributes & LATT_UNMARKED)
2534 ast_debug(5, "unmarked\n");
2538 void mm_lsub(MAILSTREAM * stream, int delim, char *mailbox, long attributes)
2540 ast_debug(5, "Delimiter set to %c and mailbox %s\n", delim, mailbox);
2541 if (attributes & LATT_NOINFERIORS)
2542 ast_debug(5, "no inferiors\n");
2543 if (attributes & LATT_NOSELECT)
2544 ast_debug(5, "no select\n");
2545 if (attributes & LATT_MARKED)
2546 ast_debug(5, "marked\n");
2547 if (attributes & LATT_UNMARKED)
2548 ast_debug(5, "unmarked\n");
2552 void mm_status(MAILSTREAM * stream, char *mailbox, MAILSTATUS * status)
2554 ast_log(AST_LOG_NOTICE, " Mailbox %s", mailbox);
2555 if (status->flags & SA_MESSAGES)
2556 ast_log(AST_LOG_NOTICE, ", %lu messages", status->messages);
2557 if (status->flags & SA_RECENT)
2558 ast_log(AST_LOG_NOTICE, ", %lu recent", status->recent);
2559 if (status->flags & SA_UNSEEN)
2560 ast_log(AST_LOG_NOTICE, ", %lu unseen", status->unseen);
2561 if (status->flags & SA_UIDVALIDITY)
2562 ast_log(AST_LOG_NOTICE, ", %lu UID validity", status->uidvalidity);
2563 if (status->flags & SA_UIDNEXT)
2564 ast_log(AST_LOG_NOTICE, ", %lu next UID", status->uidnext);
2565 ast_log(AST_LOG_NOTICE, "\n");
2569 void mm_log(char *string, long errflg)
2571 switch ((short) errflg) {
2573 ast_debug(1, "IMAP Info: %s\n", string);
2577 ast_log(AST_LOG_WARNING, "IMAP Warning: %s\n", string);
2580 ast_log(AST_LOG_ERROR, "IMAP Error: %s\n", string);
2586 void mm_dlog(char *string)
2588 ast_log(AST_LOG_NOTICE, "%s\n", string);
2592 void mm_login(NETMBX * mb, char *user, char *pwd, long trial)
2594 struct ast_vm_user *vmu;
2596 ast_debug(4, "Entering callback mm_login\n");
2598 ast_copy_string(user, mb->user, MAILTMPLEN);
2600 /* We should only do this when necessary */
2601 if (!ast_strlen_zero(authpassword)) {
2602 ast_copy_string(pwd, authpassword, MAILTMPLEN);
2604 AST_LIST_TRAVERSE(&users, vmu, list) {
2605 if (!strcasecmp(mb->user, vmu->imapuser)) {
2606 ast_copy_string(pwd, vmu->imappassword, MAILTMPLEN);
2611 if ((vmu = find_user_realtime_imapuser(mb->user))) {
2612 ast_copy_string(pwd, vmu->imappassword, MAILTMPLEN);
2620 void mm_critical(MAILSTREAM * stream)
2625 void mm_nocritical(MAILSTREAM * stream)
2630 long mm_diskerror(MAILSTREAM * stream, long errcode, long serious)
2632 kill (getpid (), SIGSTOP);
2637 void mm_fatal(char *string)
2639 ast_log(AST_LOG_ERROR, "IMAP access FATAL error: %s\n", string);
2642 /* C-client callback to handle quota */
2643 static void mm_parsequota(MAILSTREAM *stream, unsigned char *msg, QUOTALIST *pquota)
2645 struct vm_state *vms;
2646 char *mailbox = stream->mailbox, *user;
2647 char buf[1024] = "";
2648 unsigned long usage = 0, limit = 0;
2651 usage = pquota->usage;
2652 limit = pquota->limit;
2653 pquota = pquota->next;
2656 if (!(user = get_user_by_mailbox(mailbox, buf, sizeof(buf))) || (!(vms = get_vm_state_by_imapuser(user, 2)) && !(vms = get_vm_state_by_imapuser(user, 0)))) {
2657 ast_log(AST_LOG_ERROR, "No state found.\n");
2661 ast_debug(3, "User %s usage is %lu, limit is %lu\n", user, usage, limit);
2663 vms->quota_usage = usage;
2664 vms->quota_limit = limit;
2667 static char *get_header_by_tag(char *header, char *tag, char *buf, size_t len)
2669 char *start, *eol_pnt;
2672 if (ast_strlen_zero(header) || ast_strlen_zero(tag))
2675 taglen = strlen(tag) + 1;
2679 if (!(start = strstr(header, tag)))
2682 /* Since we can be called multiple times we should clear our buffer */
2683 memset(buf, 0, len);
2685 ast_copy_string(buf, start+taglen, len);
2686 if ((eol_pnt = strchr(buf,'\r')) || (eol_pnt = strchr(buf,'\n')))
2691 static char *get_user_by_mailbox(char *mailbox, char *buf, size_t len)
2693 char *start, *quote, *eol_pnt;
2695 if (ast_strlen_zero(mailbox))
2698 if (!(start = strstr(mailbox, "/user=")))
2701 ast_copy_string(buf, start+6, len);
2703 if (!(quote = strchr(buf, '\"'))) {
2704 if (!(eol_pnt = strchr(buf, '/')))
2705 eol_pnt = strchr(buf,'}');
2709 eol_pnt = strchr(buf+1,'\"');
2715 static struct vm_state *create_vm_state_from_user(struct ast_vm_user *vmu)
2717 struct vm_state *vms_p;
2719 pthread_once(&ts_vmstate.once, ts_vmstate.key_init);
2720 if ((vms_p = pthread_getspecific(ts_vmstate.key)) && !strcmp(vms_p->imapuser, vmu->imapuser) && !strcmp(vms_p->username, vmu->mailbox)) {
2723 if (option_debug > 4)
2724 ast_log(AST_LOG_DEBUG, "Adding new vmstate for %s\n", vmu->imapuser);
2725 if (!(vms_p = ast_calloc(1, sizeof(*vms_p))))
2727 ast_copy_string(vms_p->imapuser, vmu->imapuser, sizeof(vms_p->imapuser));
2728 ast_copy_string(vms_p->imapfolder, vmu->imapfolder, sizeof(vms_p->imapfolder));
2729 ast_copy_string(vms_p->username, vmu->mailbox, sizeof(vms_p->username)); /* save for access from interactive entry point */
2730 ast_copy_string(vms_p->context, vmu->context, sizeof(vms_p->context));
2731 vms_p->mailstream = NIL; /* save for access from interactive entry point */
2732 vms_p->imapversion = vmu->imapversion;
2733 if (option_debug > 4)
2734 ast_log(AST_LOG_DEBUG, "Copied %s to %s\n", vmu->imapuser, vms_p->imapuser);
2736 /* set mailbox to INBOX! */
2737 ast_copy_string(vms_p->curbox, mbox(vmu, 0), sizeof(vms_p->curbox));
2738 init_vm_state(vms_p);
2739 vmstate_insert(vms_p);
2743 static struct vm_state *get_vm_state_by_imapuser(const char *user, int interactive)
2745 struct vmstate *vlist = NULL;
2748 struct vm_state *vms;
2749 pthread_once(&ts_vmstate.once, ts_vmstate.key_init);
2750 vms = pthread_getspecific(ts_vmstate.key);
2754 AST_LIST_LOCK(&vmstates);
2755 AST_LIST_TRAVERSE(&vmstates, vlist, list) {
2757 ast_debug(3, "error: vms is NULL for %s\n", user);
2760 if (vlist->vms->imapversion != imapversion) {
2763 if (!vlist->vms->imapuser) {
2764 ast_debug(3, "error: imapuser is NULL for %s\n", user);
2768 if (!strcmp(vlist->vms->imapuser, user) && (interactive == 2 || vlist->vms->interactive == interactive)) {
2769 AST_LIST_UNLOCK(&vmstates);
2773 AST_LIST_UNLOCK(&vmstates);
2775 ast_debug(3, "%s not found in vmstates\n", user);
2780 static struct vm_state *get_vm_state_by_mailbox(const char *mailbox, const char *context, int interactive)
2783 struct vmstate *vlist = NULL;
2784 const char *local_context = S_OR(context, "default");
2787 struct vm_state *vms;
2788 pthread_once(&ts_vmstate.once, ts_vmstate.key_init);
2789 vms = pthread_getspecific(ts_vmstate.key);
2793 AST_LIST_LOCK(&vmstates);
2794 AST_LIST_TRAVERSE(&vmstates, vlist, list) {
2796 ast_debug(3, "error: vms is NULL for %s\n", mailbox);
2799 if (vlist->vms->imapversion != imapversion) {
2802 if (!vlist->vms->username || !vlist->vms->context) {
2803 ast_debug(3, "error: username is NULL for %s\n", mailbox);
2807 ast_debug(3, "comparing mailbox %s@%s (i=%d) to vmstate mailbox %s@%s (i=%d)\n", mailbox, local_context, interactive, vlist->vms->username, vlist->vms->context, vlist->vms->interactive);
2809 if (!strcmp(vlist->vms->username, mailbox) && !strcmp(vlist->vms->context, local_context) && vlist->vms->interactive == interactive) {
2810 ast_debug(3, "Found it!\n");
2811 AST_LIST_UNLOCK(&vmstates);
2815 AST_LIST_UNLOCK(&vmstates);
2817 ast_debug(3, "%s not found in vmstates\n", mailbox);
2822 static void vmstate_insert(struct vm_state *vms)
2825 struct vm_state *altvms;
2827 /* If interactive, it probably already exists, and we should
2828 use the one we already have since it is more up to date.
2829 We can compare the username to find the duplicate */
2830 if (vms->interactive == 1) {
2831 altvms = get_vm_state_by_mailbox(vms->username, vms->context, 0);
2833 ast_debug(3, "Duplicate mailbox %s, copying message info...\n", vms->username);
2834 vms->newmessages = altvms->newmessages;
2835 vms->oldmessages = altvms->oldmessages;
2836 vms->vmArrayIndex = altvms->vmArrayIndex;
2837 vms->lastmsg = altvms->lastmsg;
2838 vms->curmsg = altvms->curmsg;
2839 /* get a pointer to the persistent store */
2840 vms->persist_vms = altvms;
2841 /* Reuse the mailstream? */
2842 #ifdef REALLY_FAST_EVEN_IF_IT_MEANS_RESOURCE_LEAKS
2843 vms->mailstream = altvms->mailstream;
2845 vms->mailstream = NIL;
2851 if (!(v = ast_calloc(1, sizeof(*v))))
2856 ast_debug(3, "Inserting vm_state for user:%s, mailbox %s\n", vms->imapuser, vms->username);
2858 AST_LIST_LOCK(&vmstates);
2859 AST_LIST_INSERT_TAIL(&vmstates, v, list);
2860 AST_LIST_UNLOCK(&vmstates);
2863 static void vmstate_delete(struct vm_state *vms)
2865 struct vmstate *vc = NULL;
2866 struct vm_state *altvms = NULL;
2868 /* If interactive, we should copy pertinent info
2869 back to the persistent state (to make update immediate) */
2870 if (vms->interactive == 1 && (altvms = vms->persist_vms)) {
2871 ast_debug(3, "Duplicate mailbox %s, copying message info...\n", vms->username);
2872 altvms->newmessages = vms->newmessages;
2873 altvms->oldmessages = vms->oldmessages;
2874 altvms->updated = 1;
2875 vms->mailstream = mail_close(vms->mailstream);
2877 /* Interactive states are not stored within the persistent list */
2881 ast_debug(3, "Removing vm_state for user:%s, mailbox %s\n", vms->imapuser, vms->username);
2883 AST_LIST_LOCK(&vmstates);
2884 AST_LIST_TRAVERSE_SAFE_BEGIN(&vmstates, vc, list) {
2885 if (vc->vms == vms) {
2886 AST_LIST_REMOVE_CURRENT(list);
2890 AST_LIST_TRAVERSE_SAFE_END
2891 AST_LIST_UNLOCK(&vmstates);
2894 ast_mutex_destroy(&vc->vms->lock);
2898 ast_log(AST_LOG_ERROR, "No vmstate found for user:%s, mailbox %s\n", vms->imapuser, vms->username);
2901 static void set_update(MAILSTREAM * stream)
2903 struct vm_state *vms;
2904 char *mailbox = stream->mailbox, *user;
2905 char buf[1024] = "";
2907 if (!(user = get_user_by_mailbox(mailbox, buf, sizeof(buf))) || !(vms = get_vm_state_by_imapuser(user, 0))) {
2908 if (user && option_debug > 2)
2909 ast_log(AST_LOG_WARNING, "User %s mailbox not found for update.\n", user);
2913 ast_debug(3, "User %s mailbox set for update.\n", user);
2915 vms->updated = 1; /* Set updated flag since mailbox changed */
2918 static void init_vm_state(struct vm_state *vms)
2921 vms->vmArrayIndex = 0;
2922 for (x = 0; x < VMSTATE_MAX_MSG_ARRAY; x++) {
2923 vms->msgArray[x] = 0;
2925 ast_mutex_init(&vms->lock);
2928 static int save_body(BODY *body, struct vm_state *vms, char *section, char *format, int is_intro)
2932 char *fn = is_intro ? vms->introfn : vms->fn;
2934 unsigned long newlen;
2937 if (!body || body == NIL)
2940 ast_mutex_lock(&vms->lock);
2941 body_content = mail_fetchbody(vms->mailstream, vms->msgArray[vms->curmsg], section, &len);
2942 ast_mutex_unlock(&vms->lock);
2943 if (body_content != NIL) {
2944 snprintf(filename, sizeof(filename), "%s.%s", fn, format);
2945 /* ast_debug(1,body_content); */
2946 body_decoded = rfc822_base64((unsigned char *) body_content, len, &newlen);
2947 /* If the body of the file is empty, return an error */
2951 write_file(filename, (char *) body_decoded, newlen);
2953 ast_debug(5, "Body of message is NULL.\n");
2960 * \brief Get delimiter via mm_list callback
2963 * Determines the delimiter character that is used by the underlying IMAP based mail store.
2965 /* MUTEX should already be held */
2966 static void get_mailbox_delimiter(MAILSTREAM *stream) {
2968 snprintf(tmp, sizeof(tmp), "{%s}", imapserver);
2969 mail_list(stream, tmp, "*");
2973 * \brief Check Quota for user
2974 * \param vms a pointer to a vm_state struct, will use the mailstream property of this.
2975 * \param mailbox the mailbox to check the quota for.
2977 * Calls imap_getquotaroot, which will populate its results into the vm_state vms input structure.
2979 static void check_quota(struct vm_state *vms, char *mailbox) {
2980 ast_mutex_lock(&vms->lock);
2981 mail_parameters(NULL, SET_QUOTA, (void *) mm_parsequota);
2982 ast_debug(3, "Mailbox name set to: %s, about to check quotas\n", mailbox);
2983 if (vms && vms->mailstream != NULL) {
2984 imap_getquotaroot(vms->mailstream, mailbox);
2986 ast_log(AST_LOG_WARNING, "Mailstream not available for mailbox: %s\n", mailbox);
2988 ast_mutex_unlock(&vms->lock);
2991 #endif /* IMAP_STORAGE */
2993 /*! \brief Lock file path
2994 only return failure if ast_lock_path returns 'timeout',
2995 not if the path does not exist or any other reason
2997 static int vm_lock_path(const char *path)
2999 switch (ast_lock_path(path)) {
3000 case AST_LOCK_TIMEOUT:
3009 struct generic_prepare_struct {
3015 static SQLHSTMT generic_prepare(struct odbc_obj *obj, void *data)
3017 struct generic_prepare_struct *gps = data;
3021 res = SQLAllocHandle(SQL_HANDLE_STMT, obj->con, &stmt);
3022 if ((res != SQL_SUCCESS) && (res != SQL_SUCCESS_WITH_INFO)) {
3023 ast_log(AST_LOG_WARNING, "SQL Alloc Handle failed!\n");
3026 res = SQLPrepare(stmt, (unsigned char *) gps->sql, SQL_NTS);
3027 if ((res != SQL_SUCCESS) && (res != SQL_SUCCESS_WITH_INFO)) {
3028 ast_log(AST_LOG_WARNING, "SQL Prepare failed![%s]\n", gps->sql);
3029 SQLFreeHandle(SQL_HANDLE_STMT, stmt);
3032 for (i = 0; i < gps->argc; i++)
3033 SQLBindParameter(stmt, i + 1, SQL_PARAM_INPUT, SQL_C_CHAR, SQL_CHAR, strlen(gps->argv[i]), 0, gps->argv[i], 0, NULL);
3039 * \brief Retrieves a file from an ODBC data store.
3040 * \param dir the path to the file to be retreived.
3041 * \param msgnum the message number, such as within a mailbox folder.
3043 * This method is used by the RETRIEVE macro when mailboxes are stored in an ODBC back end.
3044 * The purpose is to get the message from the database store to the local file system, so that the message may be played, or the information file may be read.
3046 * The file is looked up by invoking a SQL on the odbc_table (default 'voicemessages') using the dir and msgnum input parameters.
3047 * The output is the message information file with the name msgnum and the extension .txt
3048 * and the message file with the extension of its format, in the directory with base file name of the msgnum.
3050 * \return 0 on success, -1 on error.
3052 static int retrieve_file(char *dir, int msgnum)
3058 void *fdm = MAP_FAILED;
3059 SQLSMALLINT colcount = 0;
3066 SQLSMALLINT datatype;
3067 SQLSMALLINT decimaldigits;
3068 SQLSMALLINT nullable;
3074 char full_fn[PATH_MAX];
3076 char *argv[] = { dir, msgnums };
3077 struct generic_prepare_struct gps = { .sql = sql, .argc = 2, .argv = argv };
3079 struct odbc_obj *obj;
3080 obj = ast_odbc_request_obj(odbc_database, 0);
3082 ast_copy_string(fmt, vmfmts, sizeof(fmt));
3083 c = strchr(fmt, '|');
3086 if (!strcasecmp(fmt, "wav49"))
3088 snprintf(msgnums, sizeof(msgnums), "%d", msgnum);
3090 make_file(fn, sizeof(fn), dir, msgnum);
3092 ast_copy_string(fn, dir, sizeof(fn));
3094 /* Create the information file */
3095 snprintf(full_fn, sizeof(full_fn), "%s.txt", fn);
3097 if (!(f = fopen(full_fn, "w+"))) {
3098 ast_log(AST_LOG_WARNING, "Failed to open/create '%s'\n", full_fn);
3102 snprintf(full_fn, sizeof(full_fn), "%s.%s", fn, fmt);
3103 snprintf(sql, sizeof(sql), "SELECT * FROM %s WHERE dir=? AND msgnum=?", odbc_table);
3104 stmt = ast_odbc_prepare_and_execute(obj, generic_prepare, &gps);
3106 ast_log(AST_LOG_WARNING, "SQL Execute error!\n[%s]\n\n", sql);
3107 ast_odbc_release_obj(obj);
3110 res = SQLFetch(stmt);
3111 if (res == SQL_NO_DATA) {
3112 SQLFreeHandle (SQL_HANDLE_STMT, stmt);
3113 ast_odbc_release_obj(obj);
3115 } else if ((res != SQL_SUCCESS) && (res != SQL_SUCCESS_WITH_INFO)) {
3116 ast_log(AST_LOG_WARNING, "SQL Fetch error!\n[%s]\n\n", sql);
3117 SQLFreeHandle (SQL_HANDLE_STMT, stmt);
3118 ast_odbc_release_obj(obj);
3121 fd = open(full_fn, O_RDWR | O_CREAT | O_TRUNC, VOICEMAIL_FILE_MODE);
3123 ast_log(AST_LOG_WARNING, "Failed to write '%s': %s\n", full_fn, strerror(errno));
3124 SQLFreeHandle (SQL_HANDLE_STMT, stmt);
3125 ast_odbc_release_obj(obj);
3128 res = SQLNumResultCols(stmt, &colcount);
3129 if ((res != SQL_SUCCESS) && (res != SQL_SUCCESS_WITH_INFO)) {
3130 ast_log(AST_LOG_WARNING, "SQL Column Count error!\n[%s]\n\n", sql);
3131 SQLFreeHandle (SQL_HANDLE_STMT, stmt);
3132 ast_odbc_release_obj(obj);