GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Mail::DataFeed::Abusix(3) User Contributed Perl Documentation Mail::DataFeed::Abusix(3)

Mail::DataFeed::Abusix - Send SMTP transaction data to the Abusix transaction feed

version 2.20210112

  use Mail::DataFeed::Abusix;
  my $abusix_feed = Mail::DataFeed::Abusix->new(
    feed_name => 'testing_feed',
    feed_dest => 'test.endpoint.example.com:1234',
    feed_key => 'this_is_a_secret',
  );
  $abusix_feed->port(25);
  $abusix_feed->ip_address('1.2.3.4');
  $abusix_feed->reverse_dns('test.example.org');
  $abusix_feed->helo('server.example.org');
  $abusix_feed->used_esmtp(1);
  $abusix_feed->used_tls(1);
  $abusix_feed->used_auth(0);
  $abusix_feed->mail_from_domain('from.example.org');
  $abusix_feed->send();

Send SMTP transaction data via udp to the Abusix real-time transaction feed.

new(%args)

  Create a new Abusix feed object
  Required args
  * feed_name - This identifies the feed to the collector.
  * feed_key - This authenticates the feed data against the feed_name to the collector
  * feed_dest -  The host or host:port where the data should be sent.
                 If the port is not specified then it defaults to port 12211.
                 Multiple destinations can be specified using comma, semicolon or whitespace to delimit the hosts.
                 If multiple hosts are specified then the data is sent to them all.

port($port)

  Set the port used to connect to the SMTP server

ip_address($ip_address)

  Set the IP address (ipv4 or ipv6) connecting to the SMTP server

reverse_dns($hostname)

  Set the reverse DNS of the connecting IP address.

helo($helo)

  Set the HELO string used to connect to the SMTP server.

used_esmtp()

  Set to true if ESMTP (EHLO) was used in the connection.
  Set to false if SMTP (HELO) was used in the connection.

used_tls()

  Set to true if TLS was used in the connection.
  Set to false if TLS was NOT used in the connection.

used_auth()

  Set to true if SMTP authentication was used in the connection.
  Set to false if SMTP authentication was NOT used in the connection.

mail_from_domain()

  Set the mail from domain.

send()

  Send the report to abusix.

Marc Bradshaw <marc@marcbradshaw.net>

This software is copyright (c) 2020 by Marc Bradshaw.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.

2021-01-12 perl v5.40.2

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.