Skip to content

Instantly share code, notes, and snippets.

@r-ryantm
Created December 31, 2020 15:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save r-ryantm/2d38b51cbc7b526e6324bca1a07ca607 to your computer and use it in GitHub Desktop.
Save r-ryantm/2d38b51cbc7b526e6324bca1a07ca607 to your computer and use it in GitHub Desktop.
/nix/store/cxir7zgmshj1ydr9ax2dv66bcj008jp6-mailnag-2.1.0
├── bin
│   ├── mailnag
│   └── mailnag-config
├── lib
│   └── python3.8
│   └── site-packages
│   ├── Mailnag
│   │   ├── backends
│   │   │   ├── base.py
│   │   │   ├── imap.py
│   │   │   ├── __init__.py
│   │   │   ├── local.py
│   │   │   ├── pop3.py
│   │   │   └── __pycache__
│   │   │   ├── base.cpython-38.pyc
│   │   │   ├── imap.cpython-38.pyc
│   │   │   ├── __init__.cpython-38.pyc
│   │   │   ├── local.cpython-38.pyc
│   │   │   └── pop3.cpython-38.pyc
│   │   ├── common
│   │   │   ├── accounts.py
│   │   │   ├── config.py
│   │   │   ├── dist_cfg.py
│   │   │   ├── exceptions.py
│   │   │   ├── i18n.py
│   │   │   ├── imaplib2.py
│   │   │   ├── __init__.py
│   │   │   ├── mutf7.py
│   │   │   ├── plugins.py
│   │   │   ├── __pycache__
│   │   │   │   ├── accounts.cpython-38.pyc
│   │   │   │   ├── config.cpython-38.pyc
│   │   │   │   ├── dist_cfg.cpython-38.pyc
│   │   │   │   ├── exceptions.cpython-38.pyc
│   │   │   │   ├── i18n.cpython-38.pyc
│   │   │   │   ├── imaplib2.cpython-38.pyc
│   │   │   │   ├── __init__.cpython-38.pyc
│   │   │   │   ├── mutf7.cpython-38.pyc
│   │   │   │   ├── plugins.cpython-38.pyc
│   │   │   │   ├── secretstore.cpython-38.pyc
│   │   │   │   ├── subproc.cpython-38.pyc
│   │   │   │   └── utils.cpython-38.pyc
│   │   │   ├── secretstore.py
│   │   │   ├── subproc.py
│   │   │   └── utils.py
│   │   ├── configuration
│   │   │   ├── accountdialog.py
│   │   │   ├── configwindow.py
│   │   │   ├── __init__.py
│   │   │   ├── plugindialog.py
│   │   │   └── __pycache__
│   │   │   ├── accountdialog.cpython-38.pyc
│   │   │   ├── configwindow.cpython-38.pyc
│   │   │   ├── __init__.cpython-38.pyc
│   │   │   └── plugindialog.cpython-38.pyc
│   │   ├── daemon
│   │   │   ├── conntest.py
│   │   │   ├── dbus.py
│   │   │   ├── idlers.py
│   │   │   ├── __init__.py
│   │   │   ├── mailchecker.py
│   │   │   ├── mailnagdaemon.py
│   │   │   ├── mails.py
│   │   │   └── __pycache__
│   │   │   ├── conntest.cpython-38.pyc
│   │   │   ├── dbus.cpython-38.pyc
│   │   │   ├── idlers.cpython-38.pyc
│   │   │   ├── __init__.cpython-38.pyc
│   │   │   ├── mailchecker.cpython-38.pyc
│   │   │   ├── mailnagdaemon.cpython-38.pyc
│   │   │   └── mails.cpython-38.pyc
│   │   ├── __init__.py
│   │   ├── plugins
│   │   │   ├── libnotifyplugin.py
│   │   │   ├── __pycache__
│   │   │   │   ├── libnotifyplugin.cpython-38.pyc
│   │   │   │   ├── soundplugin.cpython-38.pyc
│   │   │   │   ├── spamfilterplugin.cpython-38.pyc
│   │   │   │   └── userscriptplugin.cpython-38.pyc
│   │   │   ├── soundplugin.py
│   │   │   ├── spamfilterplugin.py
│   │   │   └── userscriptplugin.py
│   │   └── __pycache__
│   │   └── __init__.cpython-38.pyc
│   └── mailnag-2.1.0.dist-info
│   ├── AUTHORS
│   ├── direct_url.json
│   ├── INSTALLER
│   ├── LICENSE
│   ├── METADATA
│   ├── RECORD
│   ├── REQUESTED
│   ├── top_level.txt
│   └── WHEEL
├── nix-support
│   └── propagated-build-inputs
└── share
├── applications
│   ├── mailnag-config.desktop
│   └── mailnag.desktop
├── icons
│   └── hicolor
│   ├── 128x128
│   │   └── apps
│   │   └── mailnag.png
│   ├── 16x16
│   │   └── apps
│   │   └── mailnag.png
│   ├── 22x22
│   │   └── apps
│   │   └── mailnag.png
│   ├── 24x24
│   │   └── apps
│   │   └── mailnag.png
│   ├── 256x256
│   │   └── apps
│   │   └── mailnag.png
│   ├── 32x32
│   │   └── apps
│   │   └── mailnag.png
│   ├── 48x48
│   │   └── apps
│   │   └── mailnag.png
│   └── 96x96
│   └── apps
│   └── mailnag.png
├── locale
│   ├── bg
│   │   └── LC_MESSAGES
│   │   └── mailnag.mo
│   ├── ca
│   │   └── LC_MESSAGES
│   │   └── mailnag.mo
│   ├── cs
│   │   └── LC_MESSAGES
│   │   └── mailnag.mo
│   ├── de
│   │   └── LC_MESSAGES
│   │   └── mailnag.mo
│   ├── es
│   │   └── LC_MESSAGES
│   │   └── mailnag.mo
│   ├── fr
│   │   └── LC_MESSAGES
│   │   └── mailnag.mo
│   ├── gl
│   │   └── LC_MESSAGES
│   │   └── mailnag.mo
│   ├── hr
│   │   └── LC_MESSAGES
│   │   └── mailnag.mo
│   ├── id
│   │   └── LC_MESSAGES
│   │   └── mailnag.mo
│   ├── it
│   │   └── LC_MESSAGES
│   │   └── mailnag.mo
│   ├── pl
│   │   └── LC_MESSAGES
│   │   └── mailnag.mo
│   ├── pt
│   │   └── LC_MESSAGES
│   │   └── mailnag.mo
│   ├── pt_BR
│   │   └── LC_MESSAGES
│   │   └── mailnag.mo
│   ├── ru
│   │   └── LC_MESSAGES
│   │   └── mailnag.mo
│   ├── sr
│   │   └── LC_MESSAGES
│   │   └── mailnag.mo
│   ├── sv
│   │   └── LC_MESSAGES
│   │   └── mailnag.mo
│   ├── tr
│   │   └── LC_MESSAGES
│   │   └── mailnag.mo
│   ├── uk
│   │   └── LC_MESSAGES
│   │   └── mailnag.mo
│   ├── zh_CN
│   │   └── LC_MESSAGES
│   │   └── mailnag.mo
│   └── zh_TW
│   └── LC_MESSAGES
│   └── mailnag.mo
├── mailnag
│   ├── account_widget.ui
│   ├── config_window.ui
│   ├── mailnag.ogg
│   └── mailnag.png
└── metainfo
└── mailnag.appdata.xml
81 directories, 113 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment