Michael Ortmann

Results 187 comments of Michael Ortmann

and it sends a PART when it was just kicked. we should do better here.

my tests were based on `Eggdrop v1.10.1+alpha`, the current version as of today

Now i used your pasted bot config, only changed the server to by local one, and the bot still rejoins.

even with your server i cannot repeat the bug. but since you can repeat it, could you give #1842 a try, see if it fixes your problem?

You could try `strace` (`strace ./eggdrop -t ...`) to see the filename opened for writing and see if any `close()`, `unlink()` or `rename()` functions fail before the `write()` error shows....

Additionally chan.mod also writes bans/exempts/invites to `~new()`. In this case the file is closed and instantly reopened.

Also there is an eggdrop setting `userfile-perm` that is applied to new files created by eggdrop. This setting can be changed on the fly. So one of my very wild...

I didnt see any SIGCHLD with eggdrop. eggdrop core doesnt fork child-processes. could be related to tcl scripts executing child processes? so maybe the whole issue is related to some...

i guess a g-line would, like a k-line, send a numeric 465 to the client, so a script could use [bind raw - 465 woah_klined](https://github.com/eggheads/eggdrop/blob/d317ac228eb6682fdd6386007e09d627efd618ca/scripts/klined.tcl#L27) to catch that event. Would...