Here are the values I have in my DB for each provider.
$Provider, // array containing all settings for this provider
provider table: (Only SNPP Method providers can be processed here)
--
-- Table structure for table MPAProvider
CREATE TABLE MPAProvider (
Indicator varchar(8) NOT NULL default '',
Description varchar(35) NOT NULL default '',
Method varchar(5) NOT NULL default '',
NumOnly tinyint(1) NOT NULL default '0',
Server varchar(40) NOT NULL default '',
Port smallint(5) unsigned NOT NULL default '0',
EndLine varchar(10) NOT NULL default '',
Note varchar(255) NOT NULL default '',
PRIMARY KEY (Indicator)
) TYPE=MyISAM;
--
-- Dumping data for table MPAProvider
INSERT INTO MPAProvider VALUES
('ATT', 'AT&T using SNPP', 'SNPP', 1, '67.115.154.70', 444, '\r\n', 'AT&T using SNPP'),
('ATT2', 'AT&T cellular using email', 'SMTP', 1, '@mmode.com', 0, '', 'AT&T cellular using email'),
('COB', 'City Of Bellingham email', 'SMTP', 0, '@cob.org', 0, '', 'City Of Bellingham email'),
('CING', 'Cingular Pager (Not Cell) SNPP', 'SNPP', 1, 'snpp.cingular.com', 444, '\r\n', 'Cingular Pager (Not Cell) SNPP'),
('CING2', 'Cingular cellular using email', 'SMTP', 1, '@.mycingular.com', 0, '', 'Cingular cellular using email'),
('COOK', 'Cook Paging by SNPP', 'SNPP', 1, '67.115.154.70', 444, '\r\n', 'Cook Paging by SNPP'),
('COOK2', 'Cook Paging by email', 'SMTP', 1, '@cookmail.com', 0, '', 'Cook Paging by email'),
('NEXTEL3', 'NEXTEL cellular using SNPP', 'SNPP', 1, 'snpp.nextel.com', 444, '\r\n', 'NEXTEL cellular using SNPP'),
('NEXTEL2', 'NEXTEL cellular using email', 'SMTP', 1, '@messaging.nextel.com', 0, '', 'NEXTEL cellular using email'),
('SKY', 'Skytel messaging using SNPP', 'SNPP', 1, 'snpp.skytel.com', 444, '\r\n', 'Skytel messaging using SNPP'),
('SKY2', 'Skytel messaging using email', 'SMTP', 1, '@skytel.com', 0, '', 'Skytel messaging using email'),
('SPRINT2', 'Sprint PCS cellular using email', 'SMTP', 1, '@messaging.sprintpcs.com', 0, '', 'Sprint PCS cellular using email'),
('TMOBIL', 'T-Mobile cellular using email', 'SMTP', 1, '@tmomail.net', 0, '', 'T-Mobile cellular using email'),
('VTEXT', 'Verizon Cellular using email', 'SMTP', 1, '@vtext.com', 0, '', 'Verizon Cellular using email'),
('OTHER', 'Other email', 'SMTP', 0, '@', 0, '', 'Other email'),
('', 'NONE', '', 0, '', 0, '', 'NONE'),
('BOOST', 'Boost Mobile using email', 'SMTP', 1, '@myboostmobile.com', 0, '', 'Boost Mobile using email'),
('METRO', 'Metrocall using SNPP', 'SNPP', 1, 'snpp.metrocall.com', 444, '\r\n', 'Metrocall using SNPP'),
('METRO2', 'Metrocall using email', 'SMTP', 1, '@.metrocall.com', 0, '', 'Metrocall using email'),
('NEXTEL', 'NEXTEL paging using email', 'SMTP', 1, '@.nextel.com', 0, '', 'NEXTEL paging using email');