All public logs

Jump to navigation Jump to search

Combined display of all available logs of EggWiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
(newest | oldest) View (newer 20 | ) (20 | 50 | 100 | 250 | 500)
  • 20:58, 4 May 2024 Mortmann talk contribs created page Http async (Created page with "The ::http::geturl command blocks until the operation completes, unless the -command option specifies a callback that is invoked when the HTTP transaction completes. <pre> package require http proc httpCallback {token} { regexp {(?i)<title>([^<>]+)} [http::data $token] -> title http::cleanup $token puts "Title was \"$title\"" } set token [::http::geturl http://netbsd.org -timeout 10000 -command httpCallback] <pre>")
  • 16:46, 4 May 2024 User account Mortmann talk contribs was created by Geo talk contribs
  • 15:40, 4 May 2024 Geo talk contribs created page EggModules (Created page with "irc.mod is anything that affects live channels and live users on channels channels.mod has nothing to do with the live connection and is just userfile/chanfile storage of handles and permissions and flags the line between server.mod and irc.mod is blurry at times - for example when we receive an AWAY notification we break it down for the channel-users it triggers for, so the message itself has nothing to do with channels but we call it for each channel the user is on, so...")
  • 22:57, 9 April 2024 Geo talk contribs created page Eggdrop for Docker (Created page with "Information and documentation for the Eggdrop Docker image can be found at [https://hub.docker.com/_/eggdrop]. == Setting a Vhost with Docker == We're still trying to figure out the best way to do this! One method we've found is to set the following options in your docker-compose config file: <pre> networks: default: driver: bridge ipam: driver: default driver_opts: com.docker.network.host_ipv4: <ip here> </pre> Importantly, do not set the vh...")
  • 22:46, 29 December 2023 Geo talk contribs created page Inline (Created page with "Errors like "undefined reference to `cron_matchfld'" indicate a compatibility issue regarding Eggdrop's use of the inline keyword. See [http://www.greenend.org.uk/rjk/tech/inline.html here] for the gory details as to why. The fix is to use <pre> CFLAGS="-std=gnu89" ./configure </pre> instead of just <pre ./configure </pre> (you may need to do a <code>make distclean</code> prior to running this).")
  • 21:09, 9 July 2023 Geo talk contribs created page Connect To Partyline with TLS (Created page with "== Create a TLS Listen Port == To connect to the partyline using TLS, you must first ensure you created a listening port that uses TLS (in the config). This is done by specifying a '+' in front of the port specified in the config. <pre> listen 1.2.3.4 +4444 all </pre> == Create TLS certificates == Next, you must ensure you have TLS certificates to use. If you don't have a pair already, you can generate self-signed certificates from a terminal by running: <pre> openss...")
  • 19:02, 9 July 2023 Geo talk contribs moved page Cert Val Failed to Certificate Validation Failed
  • 19:01, 9 July 2023 Geo talk contribs created page Cert Val Failed (Created page with "With some servers, you may see an error that looks like this (debug log enabled): <pre> [21:57:55] TLS: certificate validation failed at depth 2: unable to get local issuer certificate [21:57:55] TLS: alert during write: fatal (unknown CA)....")
  • 00:28, 6 March 2023 Geo talk contribs created page Do I have Tcl installed? (Created page with "To compile the bot you need the TCL libraries and header somewhere on your system. The ./configure script will try to find them for you. If this fails, you might try to search them on your own. The library is called libtclX.X.so or libtclX.X.a. The "X.X" will be the version of the library. The extension '.so' means it is a "dynamically loadable library" and the '.a' mean it will be "statically linked". You can try to find it using find /usr -name "libtcl*" -print Th...")
  • 00:26, 6 March 2023 Geo talk contribs created page Compiling (Created page with "== What do I need to apply a .patch file to the eggdrop's source? == You need to make sure you have the 'patch' utility, and that it is at least version 2.1. patch -v to find this out. == How do I apply a patch to my source? == Make sure that you are applying the patch file to the correct version of eggdrop. 'gzip -d' the .patch file, if it ends with .gz Enter your eggdrop's source root directory and apply the patch with patch -p1 < eggdrop1.3.xx+demo.patc...")
  • 22:23, 5 February 2023 Geo talk contribs created page TclHTTPS (Created page with "The http package is a common package required by Tcl scripts that need to connect to websites. However, the "default" commands don't make it easy to understand how to connect to an https website instead of an http website, and will often generate an error if the user tries to do so. Below is an example of how to do so. NOTE: You have to install both the http AND tls Tcl libraries on the host for this to work- on Debian-based systems, this is done by an administrator run...")
  • 05:48, 2 January 2023 Geo talk contribs created page Bot Auto Op (Created page with "Rather than depending on just a hostmask to auto-op a bot, Eggdrop can utilize its botnet to pass messages to ensure the right bot is being opped. This is more secure because the bots authenticate to each other to join the botnet, and their current nick/hostmask is passed across the botnet to ensure a malicious user isn't spoofing their hostmask. To use this method, you must first ensure your bots are linked to each other. Then load the getops script in your config file...")
  • 05:07, 2 January 2023 Geo talk contribs created page Not Sharing Userfile (Created page with "If you see the error "User file rejected by <bot>: Not sharing userfile." on your partyline, check to see that your share and transfer modules are loaded. To do this, look in your config file and find these two lines: <pre> loadmodule share loadmodule transfer </pre> Make sure they look like that, and do not have a # in front of them. If they are commented out (they have a #), remove the # and restart the Eggdrop.")
  • 01:04, 27 December 2022 Geo talk contribs created page EggdropRecords (Created page with "Eggdrop has two types of records: User records, and channel records. == Struct == {| class="wikitable" |- ! chan_t ! { ! ! ! ! |- | | memberlist *member | { | | | |- | | | char nick[NICKLEN] | | | |- | | | char userhost[UHOSTLEN] | | | |- | | | char account[NICKLEN] | | | |- | | | time_t joined | | | |- | | | time_t last | | | |- | | | time_t delay | | | |- | | | userrec *user | { | | |- | | | | *next | | |- | | | | ch...")
  • 20:59, 19 December 2022 Geo talk contribs created page NickServ (Created page with "There are several ways you can automatically authenticate your bot to NickServ == Config File Authentication == At the bottom of your config file, you'll see a section that looks like this: <pre> # This is a Tcl script to be run immediately after connecting to a server. If # you want to authenticate Eggdrop with NickServ, uncomment and edit the middle # line below. bind evnt - init-server evnt:init_server proc evnt:init_server {type} { global botnick putquick "MODE...")
  • 02:47, 12 December 2022 Geo talk contribs created page Systemd (Created page with "In Eggdrop version 1.9.4, an option to create a systemd entry was added to the autobotchk script. == What is systemd == systemd is a software suite that provides an array of system components for Linux[6] operating systems. Its main aim is to unify service configuration and behavior across Linux distributions;[7] Its primary component is a "system and service manager"—an init system used to bootstrap user space and manage user processes. In other words, it manages wh...")
  • 01:30, 29 November 2022 Geo talk contribs created page Compile Errors (Created page with "If you get an error similar to: <pre> In file included from botcmd.c:25: main.h:41:10: fatal error: eggint.h: No such file or directory 41 | #include "eggint.h" | ^~~~~~~~~~ compilation terminated. In file included from botmsg.c:27: main.h:41:10: fatal error: eggint.h: No such file or directory 41 | #include "eggint.h" | ^~~~~~~~~~ In file included from bg.c:25: main.h:41:10: fatal error: eggint.h: No such file or directory 41 | #include "eggint.h" | ^~~~~~~~~~ compilati...")
  • 03:14, 23 September 2022 Geo talk contribs created page Matchattr Tcl Command Issues (Created page with "Until Eggdrop 1.8.3, the Tcl command 'matchattr' accepted "-|-" (any or no flags) as a valid mask to match against. In 1.8.3, an attempt to fix a bug causing invalid flags to match as 'true' accidentally removed this capability, causing scripts using this method to instead return "Tcl error: Unknown flag specified for matching" (and breaking the script). In 1.9.4, the original functionality of matchattr was restored, once again allowing the "-|-" mask to be used with ma...")
  • 20:52, 19 September 2022 Geo talk contribs created page EndOfWho (Tcl- trigger on end of WHO)
  • 20:49, 19 September 2022 Geo talk contribs created page MinutelyWho (Add minutely who example)
(newest | oldest) View (newer 20 | ) (20 | 50 | 100 | 250 | 500)