mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-12-25 04:02:46 +01:00
Made @bug send an email to a private mailing list.
This commit is contained in:
parent
45044c525d
commit
c2f73da997
@ -36,8 +36,11 @@ Miscellaneous commands.
|
|||||||
from fix import *
|
from fix import *
|
||||||
|
|
||||||
import os
|
import os
|
||||||
|
import time
|
||||||
import getopt
|
import getopt
|
||||||
import pprint
|
import pprint
|
||||||
|
import smtplib
|
||||||
|
import textwrap
|
||||||
|
|
||||||
import conf
|
import conf
|
||||||
import debug
|
import debug
|
||||||
@ -152,14 +155,31 @@ class MiscCommands(callbacks.Privmsg):
|
|||||||
irc.error(msg, 'That command has no help at all.')
|
irc.error(msg, 'That command has no help at all.')
|
||||||
|
|
||||||
def bug(self, irc, msg, args):
|
def bug(self, irc, msg, args):
|
||||||
"""takes no arguments
|
"""<description>
|
||||||
|
|
||||||
Log a recent bug. A revent (long) history of the messages received
|
Reports a bug to a private mailing list supybot-bugs. <description>
|
||||||
will be logged, so don't abuse this command or you'll have an upset
|
will be the subject of the email. The most recent 10 or so messages
|
||||||
admin to deal with.
|
the bot receives will be sent in the body of the email.
|
||||||
"""
|
"""
|
||||||
debug.msg(pprint.pformat(irc.state.history), 'normal')
|
description = privmsgs.getArgs(args)
|
||||||
|
messages = pprint.pformat(irc.state.history[-10:])
|
||||||
|
email = textwrap.dedent("""
|
||||||
|
Subject: %s
|
||||||
|
Date: %s
|
||||||
|
|
||||||
|
Bug report for Supybot %s.
|
||||||
|
%s
|
||||||
|
""") % (description, time.ctime(), conf.version, messages)
|
||||||
|
email = email.strip()
|
||||||
|
email = email.replace('\n', '\r\n')
|
||||||
|
debug.printf(`email`)
|
||||||
|
smtp = smtplib.SMTP('mail.sourceforge.net', 25)
|
||||||
|
smtp.sendmail('jemfinch@users.sf.net',
|
||||||
|
['supybot-bugs@lists.sourceforge.net'],
|
||||||
|
email)
|
||||||
|
smtp.quit()
|
||||||
irc.reply(msg, conf.replySuccess)
|
irc.reply(msg, conf.replySuccess)
|
||||||
|
bug = privmsgs.thread(bug)
|
||||||
|
|
||||||
def version(self, irc, msg, args):
|
def version(self, irc, msg, args):
|
||||||
"""takes no arguments
|
"""takes no arguments
|
||||||
|
Loading…
Reference in New Issue
Block a user