Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

rename backends #227

Merged
merged 1 commit into from
Mar 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions DEVELOP.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@ Visit your fork on the GitHub web site. On the main page of your fork is a ***Pu

# Check build status:

[![Build Status](https://travis-ci.org/msimerson/mail-dmarc.png?branch=master)](https://travis-ci.org/msimerson/mail-dmarc)
[![Build Status](https://github.com/msimerson/mail-dmarc/actions/workflows/ci.yml/badge.svg)](https://github.com/msimerson/mail-dmarc/actions/workflows/ci.yml)

Travis automatically runs build tests when commits are pushed to GitHub, and sends notifications to the author(s) in case of failure. For everyone else, checking the build status after a push request is merged is a good idea.
GitHub Actions automatically runs build tests when commits are pushed to GitHub, and sends notifications to the author(s) in case of failure. For everyone else, checking the build status after a push request is merged is a good idea.

# Release

Expand Down
2 changes: 1 addition & 1 deletion MANIFEST.SKIP
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
^_build
^blib
^Makefile$
^Makefile.old$
^Build$
^MANIFEST\.bak$
^MYMETA.
dmarc_reports.sqlite
t/reports-test.sqlite
t/travis
2 changes: 1 addition & 1 deletion lib/Mail/DMARC.pm
Original file line number Diff line number Diff line change
Expand Up @@ -583,7 +583,7 @@ The DMARC spec is lengthy and evolving, making correctness a moving target. In c

Providing an implementation of DMARC that SMTP utilities can utilize will aid DMARC adoption.

The list of dependencies appears long because of reporting. If this module is used without reporting, the number of dependencies not included with perl is about 5. See the [Prereq] versus [Prereq / Recommends] sections in dist.ini.
The list of dependencies appears long because of reporting. If this module is used without reporting, the number of dependencies not included with perl is about 5.

=head2 Maintainable

Expand Down
2 changes: 1 addition & 1 deletion t/12.Report.Store.SQL.t
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ use_ok($mod);
my $sql = $mod->new;
isa_ok( $sql, $mod );

my $backend_dir = './t/travis/backends';
my $backend_dir = './t/backends';
opendir( my $dir, $backend_dir ) || die "Unable to view backends in $backend_dir";
# The general gist of the tests is:
# test query mechanisms
Expand Down
Loading