Olivier
2020-Mar-25 14:11 UTC
[asterisk-users] 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 -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.digium.com/pipermail/asterisk-users/attachments/20200325/0e3168e6/attachment.html>
Olivier
2020-Mar-26 16:52 UTC
[asterisk-users] [SOLVED] Re: 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 <oza.4h07 at gmail.com> a écrit :> 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 > >-------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.digium.com/pipermail/asterisk-users/attachments/20200326/0f96c6b5/attachment.html>