summaryrefslogtreecommitdiff
path: root/FS/FS/part_export/forward_sql.pm
diff options
context:
space:
mode:
Diffstat (limited to 'FS/FS/part_export/forward_sql.pm')
-rw-r--r--FS/FS/part_export/forward_sql.pm24
1 files changed, 24 insertions, 0 deletions
diff --git a/FS/FS/part_export/forward_sql.pm b/FS/FS/part_export/forward_sql.pm
new file mode 100644
index 0000000..563efcc
--- /dev/null
+++ b/FS/FS/part_export/forward_sql.pm
@@ -0,0 +1,24 @@
+package FS::part_export::forward_sql;
+use base qw( FS::part_export::sql_Common );
+
+use strict;
+use vars qw( %info );
+use FS::Record;
+
+%info = (
+ 'svc' => 'svc_forward',
+ 'desc' => 'Real-time export of forwards to SQL databases ',
+ #.' (vpopmail, Postfix+Courier IMAP, others?)',
+ 'options' => __PACKAGE__->sql_options,
+ 'notes' => <<END
+Export mail forwards (svc_forward records) to SQL databases.
+
+<BR><BR>In contrast to sqlmail, this is intended to export just svc_forward
+records only, rather than a single export for svc_acct, svc_forward and
+svc_domain records, to export in "default" database schemas rather than
+configure the MTA or POP/IMAP server for a Freeside-specific schema, and
+to be configured for different mail server setups.
+END
+);
+
+1;