package Config::ClawsMail::MainConfigParser; use v5.26; use strict; use warnings; # VERSION use parent 'Config::INI::Reader'; # ABSTRACT: Config::INI::Reader tweaked for clawsrc sub handle_unparsed_line { my ($self, $line, $handle) = @_; return if $line =~ m{\.so$}; # plugin name return $self->next::method($line,$handle); } 1;