Failed to deliver to '[email protected]'
SMTP module(domain [192.168.0.108]) reports:
host [192.168.0.108] says:
550 [email protected] unknown user account

Reporting-MTA: dns; inflightproductions.com

Original-Recipient: rfc822;<[email protected]>
Final-Recipient: rfc822;<[email protected]>
Action: failed
Status: 5.0.0
Remote-MTA: dns; [192.168.0.108]
Diagnostic-Code: smtp;host [192.168.0.108] says:
550 [email protected] unknown user account
Received: from [192.168.0.246] (HELO ifpmax)
 by inflightproductions.com (CommuniGate Pro SMTP 5.4.7)
 with SMTP id 28593088; Fri, 16 May 2014 17:17:58 +0100
Subject: Job Sheet Completed
To: [email protected]
From: [email protected]
Return-Path: [email protected]
Date: Fri, 16 May 2014 17:17:58 +0100
Content-Type: multipart/alternative;
boundary="=_d1758738fcaa5d82784cdfb4f9ce416f"
MIME-Version: 1.0
Message-ID: <[email protected]>

On 19 May 2014, at 17:39, kxepal <[email protected]> wrote:

> Github user kxepal commented on a diff in the pull request:
> 
>    https://github.com/apache/couchdb/pull/221#discussion_r12803671
> 
>    --- Diff: src/fauxton/app/addons/documents/tests/resourcesSpec.js ---
>    @@ -50,8 +50,83 @@ define([
>           });
> 
>         });
>    -
>       });
> 
>    +  describe('Bulk Delete', function () {
>    +    var databaseId = 'ente',
>    +        collection,
>    +        values;
>    +
>    +    values = [{
>    +      _id: '1',
>    +      _rev: '1234561',
>    +      _deleted: true
>    +    },
>    +    {
>    +      _id: '2',
>    +      _rev: '1234562',
>    +      _deleted: true
>    +    },
>    +    {
>    +      _id: '3',
>    +      _rev: '1234563',
>    +      _deleted: true
>    +    }];
>    +
>    +    beforeEach(function () {
>    +      collection = new Models.BulkDeleteDocCollection(values, {
>    +        databaseId: databaseId
>    +      });
>    +    });
>    +
>    +    it("contains the models", function () {
>    +      collection = new Models.BulkDeleteDocCollection(values, {
>    +        databaseId: databaseId
>    +      });
>    +
>    +      assert.equal(collection.length, 3);
>    +    });
>    +
>    +    it("clears the memory if no errors happened", function () {
>    +      collection.handleResponse([
>    +        {"ok":true,"id":"1","rev":"10-72cd2edbcc0d197ce96188a229a7af01"},
>    +        {"ok":true,"id":"2","rev":"6-da537822b9672a4b2f42adb1be04a5b1"}
>    +      ]);
>    +
>    +      assert.equal(collection.length, 1)
>    --- End diff --
> 
>    ```
>    Linting app/addons/documents/tests/resourcesSpec.js ...ERROR
>    [L96:C41] W033: Missing semicolon.
>          assert.equal(collection.length, 1) 
>    ```
> 
> 
> ---
> If your project is set up for it, you can reply to this email and have your
> reply appear on GitHub as well. If your project does not have this feature
> enabled and wishes so, or if the feature is enabled but not working, please
> contact infrastructure at [email protected] or file a JIRA ticket
> with INFRA.
> ---
> 
> 
> -----------------------------
> 
> 
> Registered Office: 15 Stukeley Street, London WC2B 5LT, England.
> Registered in England number 1421223
> 
> This message is for the designated recipient only and may contain privileged, 
> proprietary, or otherwise private information. If you have received it in 
> error, please notify the sender immediately and delete the original. Any 
> other use of the email by you is prohibited. Please note that the information 
> provided in this e-mail is in any case not legally binding; all committing 
> statements require legally binding signatures.
> 
> 
> http://www.inflightproductions.com
> 
> 
> 

Reply via email to