Skip to content

Commit

Permalink
Merge branch 'eggheads:develop' into alltools-dev
Browse files Browse the repository at this point in the history
  • Loading branch information
crazycatdevs authored Jan 31, 2024
2 parents 23affed + d604d82 commit 3b3b68b
Show file tree
Hide file tree
Showing 429 changed files with 25,918 additions and 16,018 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -39,3 +39,4 @@ config.cache
eggdrop
EGGMOD.stamp
mod.xlibs
__pycache__
2 changes: 1 addition & 1 deletion AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -104,4 +104,4 @@ See also: THANKS, doc/Versions, doc/Changes
------------------------------------------------------------------------------

Copyright (C) 1997 Robey Pointer
Copyright (C) 1999 - 2021 Eggheads Development Team
Copyright (C) 1999 - 2024 Eggheads Development Team
2 changes: 1 addition & 1 deletion CONTENTS
Original file line number Diff line number Diff line change
Expand Up @@ -82,4 +82,4 @@ Last revised: September 21, 2018
Contains information on upgrading from a 1.6 bot to a 1.8 bot.
_____________________________________________________________________

Copyright (C) 2003 - 2021 Eggheads Development Team
Copyright (C) 2003 - 2024 Eggheads Development Team
2 changes: 1 addition & 1 deletion FEATURES
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,4 @@ Eggdrop Features

Copyright (C) 1997 Robey Pointer

Copyright (C) 2000 - 2022 Eggheads Development Team
Copyright (C) 2000 - 2024 Eggheads Development Team
15 changes: 10 additions & 5 deletions INSTALL
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,6 @@ Eggdrop uses the GNU autoconfigure scripts to make things easier.
Note that you must use full path for every file to be correctly
installed.

[The following is performed from the directory installed above.]

5. Since version 1.8, Eggdrop can use SSL to protect botnet links. If
you intend on protecting botnet traffic between Eggdrops, you must
generate SSL certificates by running:
Expand All @@ -84,6 +82,9 @@ Eggdrop uses the GNU autoconfigure scripts to make things easier.

Read docs/TLS for more info on this process.

[The following steps are performed in the directory you just installed
Eggdrop into from the previous step]

6. Edit your config file completely.

7. Start the bot with the "-m" option to create a user file, i.e. :
Expand Down Expand Up @@ -114,8 +115,12 @@ Eggdrop uses the GNU autoconfigure scripts to make things easier.

automatically restart if the machine goes down or (heaven
forbid) the bot should crash. Eggdrop includes a helper script
to generate a proper crontab script and entry. You can run this
script by typing:
to auto-generate either a systemd or crontab entry. To add a
systemd job, run:

./scripts/autobotchk [yourconfig.conf] -systemd

or to add a crontab job, run:

./scripts/autobotchk [yourconfig.conf]

Expand Down Expand Up @@ -153,5 +158,5 @@ the README file. If not, then READ IT!&@#%@!

Have fun with Eggdrop!

Copyright (C) 1997 Robey Pointer Copyright (C) 1999 - 2022 Eggheads
Copyright (C) 1997 Robey Pointer Copyright (C) 1999 - 2023 Eggheads
Development Team
3 changes: 2 additions & 1 deletion Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -490,6 +490,7 @@ install-doc: install-start
cd doc/ && $(MAKE_INSTALL) install

install-scripts: install-start
+@cd scripts/ && $(MAKE_INSTALL) install
+@cd scripts/ && $(MAKE_INSTALL) install; \
cd ../src/mod && $(MAKE_INSTALL) install-scripts

#safety hash
63 changes: 61 additions & 2 deletions NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,65 @@ Last revised: December 4, 2021

_________________________________________________________________

Eggdrop v1.9.5:

General changes:
- Implemented a workaround for a Tcl issue parsing emojis that can cause a
crash
- Fixed an improper change to the display of bind flags that caused issues
with Tcl scripts that parse bind flags
- Added SSL header information to .status to help diagnose ./configure
mismatches
- Lots of under-the-hood bug fixes

Botnet changes:
- None

Tcl API changes:
- Tcl minimum required version is now 8.5! This actually happened in version
1.9.0; we just forgot to tell people. Oops! :)

Module changes:
- Updated woobie.mod with additional example code

Eggdrop config changes:
- None

Documentation changes:
- Added additional documentation to help write modules
- Updated botnet docs to include reference to TLS docs for secure links
- Updated Tcl repo from unmaintained FTP to HTTP repository

Eggdrop v1.9.4:

General changes:
- Fixed a DNS bug causing Eggdrop to often hang on DCC or telnet
connections
- BETA: Added -systemd option to autobotchk script to restart Eggdrop via
systemd instead of cron
- Reverted matchattr match syntax to previous functionality. Matching
against "-" as a flag will once again successfully match against "no"
flags, instead of returning an error.
- Fixed some inaccurate log messages
- Fixed some format specifiers that could cause crashes in certain
situations
- Fixed logging of TAGMSG messages
- Fixed unspecified behavior of freeaddrinfo() on some BSD systems

Botnet changes:
- None

Tcl API changes:
- Moved the 'gotmsg' function back as a raw bind. It was inadvertently
moved to a rawt bind in 1.9.3, causing issuse with scripts attempting to
unbind this internal reference
Module changes:
- None

Eggdrop config changes:
- None


Eggdrop v1.9.3:

General changes:
Expand Down Expand Up @@ -151,7 +210,7 @@ Eggdrop v1.9.0:
- Added CAP support, allowing Eggdrop to extend IRC server capabilities
- Added support for SASL authentication
- Added a BETA threaded DNS capability, enabled with the --enable-tdns
configure flag. This allows asynchronus DNS requests similar to the what
configure flag. This allows asynchronous DNS requests similar to the what
the current DNS module offers, but using host system capability instead
of rewriting it from scratch. Using this means you no longer have to use
the DNS module.
Expand Down Expand Up @@ -258,4 +317,4 @@ Eggdrop v1.9.0:
________________________________________________________________________

Copyright (C) 1997 Robey Pointer
Copyright (C) 1999 - 2021 Eggheads Development Team
Copyright (C) 1999 - 2024 Eggheads Development Team
34 changes: 21 additions & 13 deletions README
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ FTP
The latest Eggdrop stable source code is always located at
https://geteggdrop.com. You can also download the current stable,
previous stable, and development snapshot via FTP at
ftp.eggheads.org/pub/Eggdrop/source
ftp://ftp.eggheads.org/pub/eggdrop/source

Git Development Snapshot

Expand Down Expand Up @@ -156,28 +156,36 @@ COMMAND LINE
Most people never use any of the options except -m and you usually
only need to use that once.

SETTING UP A CRONTAB
AUTO-STARTING EGGDROP

Systems go down from time to time, taking your Eggdrop along with it.
You may not be not around to restart it manually, so you can instead use
your host's crontab system to automatically restart Eggdrop should it
quit for any reason. Eggdrop comes with an autobotchk shell script
creates that both checks if your Eggdrop is still running, and a crontab
entry to run the botchk script every 10 minutes.
features of the operating system to automatically restart Eggdrop should
it quit for any reason. Eggdrop comes with an autobotchk shell script
that can create either a systemd or crontab entry. The systemd option
will monitor your Eggdrop and a) start it when the machine boots and b)
restart the Eggdrop if it crashes for any reason. The (older) crontab
option will check (by default) every 10 minutes to see if your Eggdrop
is still running, and attempt to restart it if it is not.

Using autobotchk is probably the fastest way of creating your botchk
and adding a crontab entry. From the install directory, simply run:
To auto-generate a systemd job, from the Eggdrop install directory,
simply run:

./scripts/autobotchk <Eggdrop config file> -systemd

To auto-geneerate a script to check Eggdrop's status and run it via a
crontab entry, simply run:

./scripts/autobotchk <Eggdrop config file>

This will crontab your bot using the default setup. If you want a list
of autobotchk options, type './autobotchk'. An example with options
would be:
of autobotchk options, type './autobotchk'. A crontab example with
options would be:

./scripts/autobotchk <Eggdrop config file> -noemail -5

This would setup crontab to run the botchk every 5 minutes and also to
not send you email saying that it restarted your bot.
This would setup crontab to run the botchk every 5 minutes and not
send you an email saying that it restarted your bot.

DOCUMENTATION

Expand Down Expand Up @@ -208,5 +216,5 @@ OBTAINING HELP
- Don't ask to ask- just state your question, along with any
relevant details and error messages

Copyright (C) 1997 Robey Pointer Copyright (C) 1999 - 2022 Eggheads
Copyright (C) 1997 Robey Pointer Copyright (C) 1999 - 2023 Eggheads
Development Team
6 changes: 4 additions & 2 deletions THANKS
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Fabian Fabian Knittel [email protected]
Fred1 Chris Fuller
G`Quann Florian Sander [email protected]
Geo Geo Van O [email protected]
guppy Jeff Fisher [email protected]
guppy Jeff Fisher [email protected]
ITE Federico Mennite [email protected]
Jason Jason Ede [email protected]
John` John [email protected]
Expand Down Expand Up @@ -236,6 +236,7 @@ eelcohuininga Eelco Huininga
Ehrenberg
ejm
Emmanuel Marty
Empus
Erick- Erick Velez [email protected]
eryg-kai
Evo|ver
Expand Down Expand Up @@ -312,7 +313,7 @@ jay
Jay Maynard
Jay S. Monk
jedis
Jeff Fisher [email protected]
Jeff Fisher [email protected]
jeffx
Jerome
jerrold
Expand Down Expand Up @@ -509,6 +510,7 @@ Robby [email protected]
Roger Yerramsetti
Rok Papez
romulus
rsc Robert Scheck
Rufus
S Wilcox
S7reaM
Expand Down
Loading

0 comments on commit 3b3b68b

Please sign in to comment.