chiark / gitweb /
REORG Delete everything that's not innduct or build system or changed for innduct
[innduct.git] / samples / storage.conf
diff --git a/samples/storage.conf b/samples/storage.conf
deleted file mode 100644 (file)
index 41a6e13..0000000
+++ /dev/null
@@ -1,45 +0,0 @@
-##  $Id: storage.conf 6567 2003-12-27 04:18:33Z rra $
-##
-##  Rules for where INN should store incoming articles.
-##
-##  This file is used to determine which storage method articles are sent
-##  to to be stored and which storage class they are stored as.  Each
-##  method is described as follows:
-##
-##      method <methodname> {
-##          newsgroups: <wildmat>
-##          class: <storage class #>
-##          size: <minsize>[,<maxsize>]
-##          expires: <mintime>[,<maxtime>]
-##          options: <options>
-##      }
-##
-##  Only newsgroups, class, and (for CNFS, to specify the metacycbuff)
-##  options are required; the other keys are optional.  If any CNFS
-##  methods are configured, you will also need to set up cycbuff.conf.
-
-#  By default, store everything in tradspool.
-method tradspool {
-    newsgroups: *
-    class: 0
-}
-
-##  Here are some samples for a CNFS configuration.  This assumes that you
-##  have two metacycbuffs configured, one for text newsgroups and one for
-##  binaries.  Cancel messages, which tend to be very high-volume, are
-##  stored in the binary metacycbuff as well.  This assumes storeonxref is
-##  set to true in inn.conf.
-
-# Pick off the binary newsgroups first.
-#method cnfs {
-#    newsgroups: *.bina*,control.cancel
-#    class: 1
-#    options: BINARY
-#}
-
-# Put the remaining (text) groups in the other cycbuff.
-#method cnfs {
-#    newsgroups: *
-#    class: 2
-#    options: TEXT
-#}