Asterisk 17.3: No VoiceMailMain When Enabling IMAP And ODBC
Hello,
On a Debian Buster instance, I compiled Asterisk 17.3.0 from source.
I enables all 3 File, IMAP and ODBC voicemail modules but I’m still using classical File module (in modules;conf and voicemail.conf):
cd asterisk-17.3.0
… make menuselect.makeopts menuselect/menuselect –enable app_voicemail_imap menuselect.makeopts; done menuselect/menuselect –enable app_voicemail_odbc menuselect.makeopts; done
…
I’ve got this:
CLI> core show application VoiceMailMain Your application(s) is (are) not registered Command ‘core show application VoiceMailMain’ failed.
CLI> module reload app_voicemail.so Module ‘app_voicemail.so’ reloaded successfully.
— Reloading module ‘app_voicemail.so’ (Comedian Mail (Voicemail System))
CLI> module show like app_voicemail.so Module Description Use Count Status Support Level app_voicemail.so Comedian Mail (Voicemail System) 0
Running core
1 modules loaded
Then I re-compiled from source removing both app_voicemail_imap and app_voicemail_odbc menuselect options and I could successfully get :
CLI> core show application VoiceMailMain
-= Info about application ‘VoiceMailMain’ =-
…
What are the necessary steps to have app_voicemail, app_voicemail_imap and app_voicemail_odbc available along with VoiceMailMain when still using app_voicemail as preferred Voicemail module ?
Best regards
One thought on - Asterisk 17.3: No VoiceMailMain When Enabling IMAP And ODBC
Hello,
Adding tthe following lines in modules.conf made VoiceMailMain re-appear. load = app_voicemail.so noload = app_voicemail_odbc.so noload = app_voicemail_imap.so
My previous modules.conf only included:
load = app_voicemail.so
I hope this would help others.
Best regards
Le mer. 25 mars 2020 à 15:11, Olivier a écrit :