Skip to content

Commit

Permalink
Merge branch 'trunk' into 6607
Browse files Browse the repository at this point in the history
  • Loading branch information
eevelweezel committed Sep 10, 2022
2 parents 6475c90 + 7fe3054 commit 3061977
Show file tree
Hide file tree
Showing 5 changed files with 46 additions and 2 deletions.
42 changes: 42 additions & 0 deletions docs/community.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
Twisted Community
#################

For interacting with the twisted community members, you have several options:

Mail Lists
==========

If you want to participate in Twisted's community or development, you probably want to join the main mailing list:

- `twisted-python <https://mail.python.org/mailman3/lists/twisted.python.org/>`_ - the main Twisted discussion list

You can subscribe to the mailing list using the web interface linked above.

ML Archives:

- `Current list archive <https://mail.python.org/archives/list/twisted@python.org/>`_
- `Other archives <https://github.com/twisted/pipermail>`_

Stack Overflow
==============

Stack Overflow is a programming Q & A site. You can find Twisted-related questions there, often with answers:

- https://stackoverflow.com/questions/tagged/twisted

Real-Time Chat
==============

You can join the `Twisted Gitter channel <https://gitter.im/twisted/twisted>`_ (or simply click the "Open Chat" button at the bottom-right of this screen).
Gitter is based on `Matrix <https://matrix.org/>`_, which is itself built with Twisted !

Alternatively you can join the following IRC channel. There are gateways between the Gitter and IRC channels.

Server: ``irc.libera.chat`` (more about `the Libera IRC network <https://libera.chat>`_)

- `#twisted <irc://irc.libera.chat/twisted>`_ - support for Twisted and its ecosystem

Blogs
=====

Read `Planet Twisted <https://planet.twistedmatrix.com/>`_.
3 changes: 2 additions & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ Contents:
:caption: Quick links

security
community
api/index
GitHub <https://github.com/twisted/twisted>
PyPI <https://pypi.org/project/twisted>
PyPI <https://pypi.org/project/twisted>
2 changes: 1 addition & 1 deletion docs/mail/examples/emailserver.tac
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ class ConsoleSMTPFactory(smtp.SMTPFactory):
def buildProtocol(self, addr):
p = smtp.SMTPFactory.buildProtocol(self, addr)
p.delivery = self.delivery
p.challengers = {"LOGIN": LOGINCredentials, "PLAIN": PLAINCredentials}
p.challengers = {b"LOGIN": LOGINCredentials, b"PLAIN": PLAINCredentials}
return p


Expand Down
1 change: 1 addition & 0 deletions src/twisted/mail/newsfragments/11634.bugfix
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
emailserver.tac now runs under python3.x
Empty file.

0 comments on commit 3061977

Please sign in to comment.