Changeset 4031 for modules/branches/2.2
- Timestamp:
- 06/09/07 00:19:11 (6 years ago)
- Files:
-
- modules/branches/2.2/voicemail/functions.inc.php (modified) (1 diff)
- modules/branches/2.2/voicemail/module.xml (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
modules/branches/2.2/voicemail/functions.inc.php
r4023 r4031 40 40 $ext->add($id, $c, '', new ext_macro('user-callerid')); // $cmd,n,Macro(user-callerid) 41 41 $ext->add($id, $c, '', new ext_macro('get-vmcontext','${CALLERID(num)}')); 42 /* TODO: once depends functionality gets fixed in core this should be put back 42 43 $ext->add($id, $c, 'check', new ext_vmexists('${CALLERID(num)}@${VMCONTEXT}')); // n,VoiceMailMain(${VMCONTEXT}) 44 */ 45 $ext->add($id, $c, 'check', new extension('MailBoxExists(${CALLERID(num)}@${VMCONTEXT})')); // n,VoiceMailMain(${VMCONTEXT}) 43 46 $ext->add($id, $c, '', new ext_vmmain('')); // n,VoiceMailMain(${VMCONTEXT}) 44 47 $ext->add($id, $c, '', new ext_macro('hangupcall')); // $cmd,n,Macro(user-callerid) modules/branches/2.2/voicemail/module.xml
r4027 r4031 2 2 <rawname>voicemail</rawname> 3 3 <name>Voicemail</name> 4 <version>1.6.3</version> 5 <depends> 6 <version>2.2.2</version> 7 </depends> 4 <version>1.6.4</version> 8 5 <changelog> 6 *1.6.4* add class to define MailBoxExists and removed the dependency on 2.2.2 - since 2.2.2 dependency checking is broken 9 7 *1.6.3* #1976 - check if mailbox exists and enter with no arguments if not 10 8 *1.6.2* Remove hardcoded paths to voicemail.conf
