You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I added this at line 67 of virtualmin-mailman-lib.pl, which seems to work. Maybe verify and put it in the next version?
# Courtesy of ChatGPT 4
sub get_postfix_version {
my $version = `postconf -d | grep '^mail_version ='`;
chomp($version);
$version =~ s/mail_version = //; # Remove the parameter name to get just the version
return $version;
}
The text was updated successfully, but these errors were encountered:
I was doing a test list--created it ok, but when I went to delete it I got from virtualmin: Undefined subroutine &postfix::get_postfix_version called at ./virtualmin-mailman-lib.pl line 350.
I added this at line 67 of virtualmin-mailman-lib.pl, which seems to work. Maybe verify and put it in the next version?
The text was updated successfully, but these errors were encountered: