summaryrefslogtreecommitdiff
path: root/FS/FS/part_export/forward_sql.pm
diff options
context:
space:
mode:
authorivan <ivan>2011-06-13 21:08:23 +0000
committerivan <ivan>2011-06-13 21:08:23 +0000
commit80c705e3125aab7a6d2aa43ac5df8b25bb4f5f92 (patch)
tree4392c7f01f386efb3df16903f408f750b15ba31f /FS/FS/part_export/forward_sql.pm
parent99040eb2bf5ab50bf3e4af138b5d5a7d8d04a333 (diff)
forward_sql export, RT#13247
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;