Anope IRC Services

Anope Support => 1.8.x/1.7.x Support (Read Only) => Topic started by: J on January 20, 2010, 12:03:02 PM

Title: HostServ request notification to opers?
Post by: J on January 20, 2010, 12:03:02 PM
Is it possible to get notified when users request VHosts?  Would that go under hostservsetters ?
Title: Re: HostServ request notification to opers?
Post by: lavinpj1 on January 20, 2010, 12:04:24 PM
http://modules.anope.org/index.php?page=view&id=181
Title: Re: HostServ request notification to opers?
Post by: J on January 20, 2010, 12:11:07 PM
I assume I put the .c in anope-version/src/modules and remove hs_request, then remake the services, then set hs_request_ext to load in place of hs_request ?
Title: Re: HostServ request notification to opers?
Post by: J on January 20, 2010, 12:22:45 PM
[06:21:33:AM] -> *operserv* modload hs_request_ext
-----
[06:21:34:AM] -OperServ- Unable to load module hs_request_ext
-----
Title: Re: HostServ request notification to opers?
Post by: lavinpj1 on January 20, 2010, 12:24:14 PM
Check the logs or the logchan for a more verbose error.

Phil
Title: Re: HostServ request notification to opers?
Post by: J on January 20, 2010, 12:29:23 PM
[Jan 20 07:28:22 2010] Loading IRCD Protocol Module: [unreal32]
[Jan 20 07:28:22 2010] status: [enc_none]
[Jan 20 07:28:22 2010] status: [ms_rsend]
[Jan 20 07:28:22 2010] debug: status: [6][Module Error, Error during load time or module returned MOD_STOP]
[Jan 20 07:28:22 2010] MySQL: has been disabled.
[Jan 20 07:28:22 2010] Databases loaded
[Jan 20 07:28:22 2010] Info: Reflecting database records.
[Jan 20 07:28:22 2010] Connected to Server 1 (69.60.114.240:8903)
[Jan 20 07:28:22 2010] trying to load [cs_appendtopic]
[Jan 20 07:28:22 2010] [cs_appendtopic] Loaded successfully
[Jan 20 07:28:22 2010] status: [cs_enforce]
[Jan 20 07:28:22 2010] status: [ns_maxemail]
[Jan 20 07:28:22 2010] status: [os_info]
[Jan 20 07:28:22 2010] os_info: Loading configuration directives...
[Jan 20 07:28:22 2010] os_info: OSInfoDBName is not defined in Services configuration file, using default os_info.db
[Jan 20 07:28:22 2010] os_info: Directive OSInfoDBName loaded (os_info.db)...
[Jan 20 07:28:22 2010] status: [hs_request_ext]
[Jan 20 07:28:22 2010] [hs_request_ext] Loading module...
[Jan 20 07:28:22 2010] [hs_request_ext] RAW has NOT been disabled! (This is fatal!)
[Jan 20 07:28:22 2010] hs_request_ext requested unload...
[Jan 20 07:28:22 2010] hs_request_ext un-loaded
[Jan 20 07:28:22 2010] status: [6][Module Error, Error during load time or module returned MOD_STOP]
Title: Re: HostServ request notification to opers?
Post by: J on January 20, 2010, 12:30:50 PM
I suppose the issue is RAW is supported.
Title: Re: HostServ request notification to opers?
Post by: J on January 20, 2010, 12:32:04 PM
"
 * These measures have been added to protect users against themselves and prevent
 * the author of this module from being confronted with support queries about situations that
 * would not occor during normal use (for example when using RAW).
 *
 * If you undef this directive, these checks will be disabled, however you WILL LOSE ALL SUPPORT!!!
 * If you use the module in unsupported module ayways (because of a conflicting 3rd party module
 * for example) this may also be desirable.
 *
 * To undefine this replace "#define" by "#undef" or simply comment the line out.
 * Note that you may need to delete hs_request_ext.o and .so (*nix) to force a recompile.
 **/
#define SUPPORTED
"
Title: Re: HostServ request notification to opers?
Post by: J on January 20, 2010, 12:34:00 PM
I suppose I need to make #define supported in to:

#undef
Title: Re: HostServ request notification to opers?
Post by: J on January 20, 2010, 01:09:02 PM
I got it chief.