563efcc44eea2e73fcc755355235bc9bef8d6b65
[freeside.git] / FS / FS / part_export / forward_sql.pm
1 package FS::part_export::forward_sql;
2 use base qw( FS::part_export::sql_Common );
3
4 use strict;
5 use vars qw( %info );
6 use FS::Record;
7
8 %info = (
9   'svc'      => 'svc_forward',
10   'desc'     => 'Real-time export of forwards to SQL databases ',
11                 #.' (vpopmail, Postfix+Courier IMAP, others?)',
12   'options'  => __PACKAGE__->sql_options,
13   'notes'    => <<END
14 Export mail forwards (svc_forward records) to SQL databases.
15
16 <BR><BR>In contrast to sqlmail, this is intended to export just svc_forward
17 records only, rather than a single export for svc_acct, svc_forward and
18 svc_domain records, to export in "default" database schemas rather than
19 configure the MTA or POP/IMAP server for a Freeside-specific schema, and
20 to be configured for different mail server setups.
21 END
22 );
23
24 1;