Anthon Pang
Anthon Pang
Currently, the callback always passes $xheader = false as it doesn't parse any custom X- headers (found in the message body).
http://tools.ietf.org/rfc/rfc5248.txt (A Registry for SMTP Enhanced Mail System Status Codes) http://tools.ietf.org/rfc/rfc3463.txt (Enhanced Mail System Status Codes), obsoletes 1893 http://tools.ietf.org/rfc/rfc3461.txt (Simple Mail Transfer Protocol (SMTP) Service Extension for Delivery Status Notifications...
Grab the To: field from the header. This should be the Return-Path: set when the message was sent
May be dated: - https://sourceforge.net/projects/bmh/forums/forum/613246/topic/1616903 - https://sourceforge.net/projects/bmh/forums/forum/613246/topic/4043909 - https://sourceforge.net/projects/bmh/forums/forum/613246/topic/1619052
1. generate an alert if a redirect (e.g. 302) response contains a non-empty body 2. test for session fixation 3. generate an alert if an img tag has an onerror...
The 2.0 release will mark the start of "W3C First" support. IOW the client will default to W3C WebDriver Protocol, and where possible, provide some fallback for legacy JSON Wire...
CompatBuster: * `$this->curl` no longer prefixes the command with a leading slash, e.g., `'/status'` Features: * Dispatches before/after/error events for each WebDriver command Sample Before Event: ``` { "event": "before",...
The Actions API is pretty low level. We should consider adding a builder to make it more accessible. Example: ```php $session->actions ->moveToElement($clickable) ->pause(1) ->clickAndHold() ->pause(1) ->sendKeys('abc') ->perform(); ```