fix: include Net::CMD

This commit is contained in:
Dominik Meyer 2025-02-07 17:43:31 +01:00
parent b509009c9f
commit d4f76374e7
Signed by: byterazor
GPG Key ID: EABDA0FD5981BC97

View File

@ -1,6 +1,10 @@
package Net::LMTP; package Net::LMTP;
use strict;
use warnings;
use base 'Net::SMTP'; use base 'Net::SMTP';
use Net::Cmd;
sub hello { sub hello {
@ -32,5 +36,4 @@ sub hello {
sub _EHLO { shift->unsupported(@_);} sub _EHLO { shift->unsupported(@_);}
sub _HELO { shift->unsupported(@_);} sub _HELO { shift->unsupported(@_);}
sub _LHLO { shift->command("LHLO", @_)->response() == CMD_OK } sub _LHLO { shift->command("LHLO", @_)->response() == CMD_OK }
1; 1;