Craig Dean

Results 14 comments of Craig Dean

Probably too late to help now, but for anyone else. Once you have identified the files in question, you can download them from s3 and add .eml to the end....

I had this error for the Sender header. I changed this line: `header = header.replace(/^Sender: (.*)\r?\n/mg, '');` To be: `header = header.replace(/^Sender: (.*(?:\r?\n\s+.*)*)\r?\n/mg, '');` I opened the problem message in...

This is already fixed by https://github.com/arithmetric/aws-lambda-ses-forwarder/pull/118 I merged it into my fork and it fixed the problem.

The source and destination are the same so is just does a read and a write on the object in the bucket. It is just purely a test to see...

Is that an error from SendRawEmail? Download the message from S3 and look for that header. Maybe compare to some messages that are working? There is a bunch of code...

How would this affect those of us running in a container? Currently I have the configuration folder with maps sitting on the host being presented to the container and to...

At the very least can we get the ability to set the **Email Management** config? ![image](https://user-images.githubusercontent.com/12757219/57344057-eb1d1f00-7199-11e9-86ad-c7e6c5fa7429.png) These are the values for **email_incident_creation** * Open a new alert for each trigger...

If it helps here is the payload I used for testing updating a custom rules via the API for my PRTG email integration ``` 'integration': { 'type': 'generic_email_inbound_integration', 'name': "Email",...

I refer to the [blog announcement](https://www.hashicorp.com/blog/terraform-0-13-brings-powerful-meta-arguments-to-modular-workflows) for TF 0.13 with this block of code: ``` variable "project_id" { type = string } variable "regions" { type = map(object({ region =...

> @cregkly This example is with Google cloud - the provider instance is not constrained within the region with Google, so you don't need multiple provider instances to use different...