Skip to content
/ postfix Public

a simple node package to parse and change postfile config files

Notifications You must be signed in to change notification settings

dscape/postfix

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

postfix

build status

a simple node package to parse and change postfile config files

var postfix = require('postfix'),
  default = postfix();

default.load(function (err, data) {
  default.append('foo@domain.com', 'bar@gmail.com', function (err, data) {
    //
    // actually not necessary, its just the index
    // this is just to show how you get the data (and when)
    //
    var toDelete = data[1].i;
    canonical.delete(toDelete, function (err, data) {
      console.log('wat happened');
    });
  });
});

About

a simple node package to parse and change postfile config files

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published