Skip to content

Instantly share code, notes, and snippets.

@ryantm
Created July 19, 2019 09:49
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 ryantm/382ae4fb2af1436b2800e0a0b24a215c to your computer and use it in GitHub Desktop.
Save ryantm/382ae4fb2af1436b2800e0a0b24a215c to your computer and use it in GitHub Desktop.
/nix/store/p1rj8p32bs8f33qnsvpj0qfq09l7r9v3-dovecot-pigeonhole-0.5.7
├── bin
│   ├── sievec
│   ├── sieve-dump
│   ├── sieve-filter
│   └── sieve-test
├── include
│   └── dovecot-2.3-pigeonhole
│   └── sieve
│   ├── edit-mail.h
│   ├── mail-raw.h
│   ├── pigeonhole-config.h
│   ├── pigeonhole-version.h
│   ├── rfc2822.h
│   ├── sieve-actions.h
│   ├── sieve-address.h
│   ├── sieve-address-parts.h
│   ├── sieve-address-source.h
│   ├── sieve-ast.h
│   ├── sieve-binary-dumper.h
│   ├── sieve-binary.h
│   ├── sieve-binary-private.h
│   ├── sieve-code-dumper.h
│   ├── sieve-code.h
│   ├── sieve-commands.h
│   ├── sieve-common.h
│   ├── sieve-comparators.h
│   ├── sieve-config.h
│   ├── sieve-dump.h
│   ├── sieve-error.h
│   ├── sieve-error-private.h
│   ├── sieve-ext-copy.h
│   ├── sieve-ext-enotify.h
│   ├── sieve-extensions.h
│   ├── sieve-ext-environment.h
│   ├── sieve-ext-imap4flags.h
│   ├── sieve-ext-mailbox.h
│   ├── sieve-ext-variables.h
│   ├── sieve-generator.h
│   ├── sieve.h
│   ├── sieve-interpreter.h
│   ├── sieve-lexer.h
│   ├── sieve-limits.h
│   ├── sieve-match.h
│   ├── sieve-match-types.h
│   ├── sieve-message.h
│   ├── sieve-objects.h
│   ├── sieve-parser.h
│   ├── sieve-plugins.h
│   ├── sieve-result.h
│   ├── sieve-runtime.h
│   ├── sieve-runtime-trace.h
│   ├── sieve-script.h
│   ├── sieve-script-private.h
│   ├── sieve-settings.h
│   ├── sieve-smtp.h
│   ├── sieve-storage.h
│   ├── sieve-storage-private.h
│   ├── sieve-stringlist.h
│   ├── sieve-types.h
│   └── sieve-validator.h
├── lib
│   ├── dovecot
│   │   ├── doveadm
│   │   │   ├── lib10_doveadm_sieve_plugin.la
│   │   │   └── lib10_doveadm_sieve_plugin.so
│   │   ├── lib90_sieve_plugin.la
│   │   ├── lib90_sieve_plugin.so
│   │   ├── lib95_imap_filter_sieve_plugin.la
│   │   ├── lib95_imap_filter_sieve_plugin.so
│   │   ├── lib95_imap_sieve_plugin.la
│   │   ├── lib95_imap_sieve_plugin.so
│   │   ├── settings
│   │   │   ├── libmanagesieve_login_settings.la
│   │   │   ├── libmanagesieve_login_settings.so
│   │   │   ├── libmanagesieve_settings.la
│   │   │   ├── libmanagesieve_settings.so
│   │   │   ├── libpigeonhole_settings.la
│   │   │   └── libpigeonhole_settings.so
│   │   └── sieve
│   │   ├── lib90_sieve_extprograms_plugin.la
│   │   ├── lib90_sieve_extprograms_plugin.so
│   │   ├── lib90_sieve_imapsieve_plugin.la
│   │   └── lib90_sieve_imapsieve_plugin.so
│   └── dovecot-2.3-pigeonhole
│   ├── libdovecot-sieve.la
│   ├── libdovecot-sieve.so -> libdovecot-sieve.so.0.0.0
│   ├── libdovecot-sieve.so.0 -> libdovecot-sieve.so.0.0.0
│   └── libdovecot-sieve.so.0.0.0
├── libexec
│   └── dovecot
│   ├── managesieve
│   └── managesieve-login
└── share
├── aclocal
│   └── dovecot-pigeonhole.m4
├── doc
│   └── dovecot-2.3-pigeonhole
│   ├── example-config
│   │   ├── conf.d
│   │   │   ├── 20-managesieve.conf
│   │   │   ├── 90-sieve.conf
│   │   │   └── 90-sieve-extprograms.conf
│   │   └── sieve-ldap.conf
│   └── sieve
│   ├── extensions
│   │   ├── duplicate.txt
│   │   ├── editheader.txt
│   │   ├── include.txt
│   │   ├── spamtest-virustest.txt
│   │   ├── vacation.txt
│   │   ├── vnd.dovecot.environment.txt
│   │   └── vnd.dovecot.report.txt
│   ├── locations
│   │   ├── dict.txt
│   │   ├── file.txt
│   │   └── ldap.txt
│   └── plugins
│   ├── imap_filter_sieve.txt
│   ├── imapsieve.txt
│   └── sieve_extprograms.txt
└── man
├── man1
│   ├── doveadm-sieve.1.gz
│   ├── sievec.1.gz
│   ├── sieved.1.gz
│   ├── sieve-dump.1.gz
│   ├── sieve-filter.1.gz
│   └── sieve-test.1.gz
└── man7
└── pigeonhole.7.gz
25 directories, 105 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment