How to Block an Internal LAN IP to send mail

I have Sun Java Messaging Server 6.1
It is Open relay on the server. The Public IP of my mail server is configured on Firewall, from there it is NAT to internal LAN IP of the mail server.
I want to get/recieve mail on this Internal IP and want to block this IP to send any mail out. (How can I do that. Guide me in securing my server from it ). I don't have much experience on it, so tell me how to Close the open relay.
Thanks.
(u can mail me at : [email protected])
MAK.

Thanks for the reply. I put the complete local C class in internal-ip in mappings file. the mail comes from 192.168.0.39 from outside. How to define that all Class can send mail except of this .39 because of spamming.
Here r some enteries from log file:
19-Oct-2004 11:07:48.01 tcp_local R 5 rfc822;[email protected] [email protected] Illegal host/domai
n name found (TCP active open: Failed gethostbyname() on ms050.url.com.tw, resolver errno = 1)
19-Oct-2004 11:07:48.95 tcp_local R 5 rfc822;[email protected] [email protected] Ille
gal host/domain name found (TCP active open: Failed gethostbyname() on ms40.hinet.net, resolver errno = 1)
19-Oct-2004 11:07:49.73 tcp_local D 5 rfc822;[email protected] [email protected] dns;ms75a.hinet.net (m
s75.hinet.net ESMTP Sendmail 8.8.8/8.8.8; Tue, 19 Oct 2004 14:08:39 +0800 [CST]) smtp;250 <[email protected]>... Recipient
ok
19-Oct-2004 11:07:51.56 tcp_local D 5 rfc822;[email protected] [email protected] dns;
ms16a.hinet.net (ms16.hinet.net ESMTP Sendmail 8.8.8/8.8.8; Tue, 19 Oct 2004 14:08:40 +0800 [CST]) smtp;250 <qwsuhgadfrryoj@ms
16.hinet.net>... Recipient ok
19-Oct-2004 11:31:21.68 tcp_local process E 2 rfc822;[email protected] [email protected]
19-Oct-2004 11:31:21.68 tcp_local process E 2 rfc822;[email protected] [email protected]
s;mx1.yam.com (mx1.yam.com ESMTP) smtp;250 Ok
19-Oct-2004 11:53:01.08 tcp_local D 8 [email protected] rfc822;[email protected] [email protected] dns;mx1.yam.co
m (mx1.yam.com ESMTP) smtp;250 Ok
19-Oct-2004 11:53:03.44 tcp_local process E 1 rfc822;[email protected] [email protected]
19-Oct-2004 11:53:03.89 tcp_local process E 11 rfc822;[email protected] [email protected]
19-Oct-2004 11:44:34.04 tcp_local Q 2 [email protected] rfc822;[email protected] [email protected] Te
mporary error returned by SMTP partner. smtp;421 VS1-IP Excessive unknown recipients - possible Open Relay http://help.yahoo.c
om/help/us/mail/spam/spam-18.html (#4.1.8)
Its a very huge log file. If u want to see I can e-mail to u... If required plz give me ur e-mail.
I would be grateful if u solve my problem. I can see about 10GB of mail Queue, and make the server dead slow. and Network also chowked.
Thanks.

Similar Messages

  • How to determine the protocol to use in Sender mail Adapter ?

    Hi All
    Can i use my Microsoft Exhange Server address while configuring Sender Mail Adapter .? If yes , then which protocol i can use out of IMAP and POP ?..
    How do i determine which protocol i should use to connect to my exchange server ?
    Thanks
    rohan

    Hi Rohan,
    //Can i use my Microsoft Exhange Server address while configuring Sender Mail Adapter .?
    Yes, you can.
    //If yes , then which protocol i can use out of IMAP and POP ?..
    You can use either of them. To know more on IMAP and POP, i would suggest you go through these links,
    http://www.trincoll.edu/depts/cc/documentation/email/IMAP_vs_POP/default.htm
    http://www.imap.org/papers/imap.vs.pop.brief.html
    If your are using IMAP, you will have to specify, which folder from which you wnaty the emmail to be retrived, this is not needed for POP.
    Hope this helps,
    Regards,
    bhavesh

  • How to Convert Report into Excel Sheet when Sending Mail.

    Dear Friends,
    i want to send mail to HOD of Product with an Excel Sheet .
    i want to send Pending Issue details to HOD in Excel Sheet attachment .
    here i have pending issue report now i need to send it in Excel Sheet attachment .
    i have table where i have manage Product ID and HOD OF PRODUCT.
    CREATE TABLE  "MAP_USER_PRODUCT_DTL"
       (     "ID" NUMBER NOT NULL ENABLE,
         "PRODUCT_ID"NUMBER,
         "USER_ID" VARCHAR2(5) NOT NULL ENABLE,
         "HOD_PROD" VARCHAR2(100)========================================Value is Y OR N IF HOD then Y else N
         CONSTRAINT "MAP_USER_PRODUCT_DTL_PK" PRIMARY KEY ("ID") ENABLE
    /i have one more table where all complete issue detail insert.
    CREATE TABLE  "CRM_ISSUE_PROBLEM"
       (     "ID" NUMBER,
         "SUBJECT" VARCHAR2(255) NOT NULL ENABLE,
         "CLIENT_ID" NUMBER,
         "ASSIGNED_TO_ID" VARCHAR2(100),
         "ASSIGNED_ON" DATE,
         "DESCRIPTION" VARCHAR2(4000),
         "PRODUCT_ID" NUMBER NOT NULL ENABLE,
         "STATUS_ID" NUMBER NOT NULL ENABLE,
          CONSTRAINT "CRM_ISSUE_PROBLEM_PK" PRIMARY KEY ("ID") ENABLE
    Here STATUS_ID is Like Pending ISsue,Open Issue and Close Issue .i want to send mail to HOD with Pending Issue Report convert into Excel Sheet and send to HOD?
    How can i do this.
    Thanks
    Edited by: Vedant on Oct 12, 2011 12:36 AM
    Edited by: Vedant on Oct 12, 2011 2:22 AM

    Hello Vedant,
    Would it suffice if you send a CSV file?
    If yes, then see following code.. run the code under APEX > Home > SQL Workshop > SQL Commands
    DECLARE
            ln_id NUMBER;
            lc_clob CLOB;
         lb_blob BLOB;
         li_in PLS_INTEGER := 1;
         li_out PLS_INTEGER := 1;
         li_lang PLS_INTEGER := 0;
         li_warning PLS_INTEGER := 0;
         lv_mail_rcpts VARCHAR2(2000) := '[email protected]';
         lv_mail_from VARCHAR2(100) := '[email protected]';     
           lv_clmn_separator VARCHAR2(1) := ',';
    BEGIN
         -- Build file content as CLOB
      -- Replace with your query
         FOR i IN (select object_id A, object_name B, object_type C, status D, temporary E, generated F, secondary G,namespace H from user_objects where rownum < 10)               
         LOOP
        IF lc_clob IS NULL THEN
          lc_clob := i.A||lv_clmn_separator||i.B||lv_clmn_separator||i.C||lv_clmn_separator||i.D||lv_clmn_separator||i.E||lv_clmn_separator||i.F||lv_clmn_separator||i.G||lv_clmn_separator||i.H;
        ELSE
          lc_clob := lc_clob||CHR(10)||i.A||lv_clmn_separator||i.B||lv_clmn_separator||i.C||lv_clmn_separator||i.D||lv_clmn_separator||i.E||lv_clmn_separator||i.F||lv_clmn_separator||i.G||lv_clmn_separator||i.H;
        END IF;
         END LOOP; 
         -- Convert CLOB to BLOB
         DBMS_LOB.CREATETEMPORARY(lb_blob,TRUE);
         DBMS_LOB.convertToBlob(lb_blob,lc_clob,DBMS_LOB.LOBMAXSIZE,li_in,li_out,DBMS_LOB.DEFAULT_CSID,li_lang,li_warning);
         -- Send mail
         ln_id:= APEX_MAIL.SEND(
           p_to        => lv_mail_rcpts,
                 p_from      => lv_mail_from,
                 p_subj      => 'Subject Goes here',
                 p_body      => 'Body goes here'
           -- add CSV file as attachment
         APEX_MAIL.ADD_ATTACHMENT
           p_mail_id   => ln_id,
           p_attachment => lb_blob,
           p_filename   => 'filename.csv',
           p_mime_type  => 'application/csv'
      -- push mail queue
      APEX_MAIL.PUSH_QUEUE;
         -- empty temporary space
         DBMS_LOB.FREETEMPORARY ( lob_loc =>  lb_blob);       
         COMMIT;
    END;Regards,
    Hari

  • How to read email IDs from DB and send mails

    Hi,
    i m trying to read a set of e-mail IDs from the DB and sending mails to all those email ids.
    i am getting "null pointer exception". kindly suggest how can i able to send mails to mails to those users
    registered in the db.
    I am reading the e-mail from the db like this :
    Connection con = DriverManager.getConnection("jdbc:oracle:thin:@10.2.0.100:1521:eprocure", "uid",
    "pwd");     
    I am using oracle9iAS.
    Error i m getting :
    java.lang.NullPointerException7/16/04 2:25 PM:
         at javax.mail.internet.InternetAddress.parse(InternetAddress.java:534)
         at javax.mail.internet.InternetAddress.<init>(InternetAddress.java:61)
         at com.ep.util.MailUtility.sendMail(MailUtility.java:163)
         at login.SendMsg._jspService(_SendMsg.java:121)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
         at oracle.jsp.runtimev2.JspPageTable.compileAndServe(JspPageTable.java:508)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:255)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:407)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:330)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:336)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:684)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:269)7/
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:735)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:151)
         at com.evermind.util.ThreadPoolThread.run(ThreadPoolThread.java:64)
    pls advise.
    keep smiling....
    Debasis

    Based on your stack trace I would say you have a line of code like... = new InternetAddress(something)...and that something is null.
    PC&#178;

  • How to block CIFed Transportation lane from ECC to APO

    Dear all,
    I want to know if there is any way to stop automatic creation of Transportation lane in APO when material master records, with  procurement type F: External Procurement and special procurement U, are registered or modified in ECC.
    Although only APO-DP is implemented in our project, which does not require the transportation lanes at all, we have to delete not only a product location master record but also collesponding product specific transportation lane when the product is no longer available for demand planning. 
    The integration model includes only material master records, not other TL-related data such as Pur. info.
    I've tried to find any configurations or EXITs stuff which satisfy the requirement above, but couldn't find it...
    I would appreciate any information on this.
    Thanks in advance.
    So Kitagawa
    Edited by: So Kitagawa on May 14, 2008 6:12 PM

    I think this is created part of the Product Integration Model and is controlled via the Product Inbound User Exit - APOCF005.
    There is no User Exit for Transportation Lanes.
    In this User Exit ... there is a Structure /sapapo/matloc which I think contains the Procurement Type (BESKZ) and instead of the Spl. Procurement Key it contains the Supplying Plant (SUPPLPLANT),  Procurement Category (SUPPLTYPE).
    It's got to be the fields in the MATLOC Structure.
    Could be the MATLOCX Structure too ... I could not see any, so I think the above 2 fields should do it.
    Try Coding in this UserExit to make the SUPPLPLANT and SUPPLTYPE field as Blank via ABAP Code.  Do  not touch the BESKZ field as that is needed in APO. This should do it ...when you activate the Model the Inbound Processing.
    Hope this helps.  Reward Points if you do.
    Regards,
    Ambrish Mathur

  • How to block OLD email from arriving in the Mail app?

    Since upgrading to iOS 5 my Gmail account keeps filling with old messages. As fast as I clear them out more arrive. There are something in the order of 10,000 messages awaiting me apparently. How do I stop this? I want only new mail, not old mail.

    My user is getting notified of a "suspected spam" message via IronPort.  I have
    released 2 of these messages to her so that I can see what the message body says.  It is exactly what I posted in my original post.  The from field says"From: VIAGRA (c) Official Vendor [mailto:[email protected]] or From: VIAGRA (c) Direct Distibutor [mailto:[email protected]]
    I've done a search and can't find any emails to anyone in my company with Viagra in the from field.  The message body says:
    Having trouble reading this email? View it in your browser
    I guess I could create a Content Filter for Message Body, but would I just put "Having trouble reading this email? View it in your browser"? 
    Do I need to seperate each word somehow?  When putting multiple words into a content filter, how do I seperate them, or do I need to seperate them?

  • Internal Server Error while sending mail with extended property

    I am using EWS Managed API. I just started fiddling with Extended properties. So I wrote simple code to send a simple mail with extended property attached to it.
    Forming the mail part I simply copy pasted from this
    MSDN page. For testing purpose I suppressed certificate validations.
    This is my complete code:
    1 ServicePointManager.ServerCertificateValidationCallback = delegate(object s, X509Certificate certificate, X509Chain chain, SslPolicyErrors sslPolicyErrors) { return true; };
    2 service = new ExchangeService(ExchangeVersion.Exchange2007_SP1);
    3 service.TraceListener = new TraceListener();
    4 service.TraceEnabled = false;
    5
    6 service.Credentials = new WebCredentials("[email protected]", "password@123");
    7 service.Url = new Uri("https://exchng.domain.com/EWS/Exchange.asmx");
    8
    9 Guid MyPropertySetId = new Guid("{C11FF724-AA03-4555-9952-8FA248A11C3E}");
    10
    11 // Create a definition for the extended property.
    12 ExtendedPropertyDefinition extendedPropertyDefinition = new ExtendedPropertyDefinition(MyPropertySetId, "Expiration Date", MapiPropertyType.String);
    13
    14 // Create an e-mail message that you will add the extended property to.
    15 EmailMessage message = new EmailMessage(service);
    16 message.Subject = "Saved with extendedPropertyDefinition of two days";
    17 message.Body = "The expiration date is contained within the extended property.";
    18 message.ToRecipients.Add("[email protected]");
    19
    20 // Add the extended property to an e-mail message object named "message".
    21 message.SetExtendedProperty(extendedPropertyDefinition, DateTime.Now.AddDays(2).ToString());
    22
    23 // Save the e-mail message.
    24 message.SendAndSaveCopy();
    Please find the rest of the question in first reply, as I got "Body must be 4 to 60000 characters long".

    Rest of the question:
    I am getting below exception (with no nested inner exceptions) on line 24:
    An internal server error occurred. The operation failed.
    at Microsoft.Exchange.WebServices.Data.ServiceResponse.InternalThrowIfNecessary()
    at Microsoft.Exchange.WebServices.Data.ServiceResponse.ThrowIfNecessary()
    at Microsoft.Exchange.WebServices.Data.MultiResponseServiceRequest`1.Execute()
    at Microsoft.Exchange.WebServices.Data.ExchangeService.InternalCreateItems(IEnumerable`1 items, FolderId parentFolderId, Nullable`1 messageDisposition, Nullable`1 sendInvitationsMode, ServiceErrorHandling errorHandling)
    at Microsoft.Exchange.WebServices.Data.ExchangeService.CreateItem(Item item, FolderId parentFolderId, Nullable`1 messageDisposition, Nullable`1 sendInvitationsMode)
    at Microsoft.Exchange.WebServices.Data.Item.InternalCreate(FolderId parentFolderId, Nullable`1 messageDisposition, Nullable`1 sendInvitationsMode)
    at Microsoft.Exchange.WebServices.Data.EmailMessage.InternalSend(FolderId parentFolderId, MessageDisposition messageDisposition)
    at Microsoft.Exchange.WebServices.Data.EmailMessage.SendAndSaveCopy()
    If I comment line number 21, the code works fine and sends the message. So why it fails with extended properties?

  • VSTO development outlook plugin how to get the full storage path attachment send mail attachments added

    Such as the title, but I have a filepath verified discoveries are empty, there is a member of the method will be invoked after GetTemporaryFilePath COM error, but also can not get in VSTO attach the member variable. Accessories are found himself in a temporary
    directory exists, the registry seems to have a place to record the address of this directory, but this is his findings do not know can not be used as a method to obtain

    Hello,
    First of all, the forum is for Office Apps. That's why I'd recommend asking VSTO specific questions on the
    Visual Studio Tools for Office (VSTO)  forum instead. For Outlook dev questions see the Outlook for Developers  forum .
    > there is a member of the method will be invoked after GetTemporaryFilePath COM error, but also can not get in VSTO attach the member variable.
    What exception do you get in the code? Could you please be more specific?
    The GetTemporaryFilePath method is only valid for those attachments whose Type property
    is OlAttachmentType.olByValue. That means that the attachment is a copy and that the copy can be accessed even if the original file is removed. For other attachment types, the GetTemporaryFilePath method
    returns an error.
    GetTemporaryFilePath also returns an error when accessing an Attachment object
    in an Attachments collection
    or in the AttachmentSelection object.
    UseGetTemporaryFilePath only in attachment event callbacks listed below for various Microsoft Outlook items:
    AttachmentAdd
    AttachmentRead
    AttachmentRemove
    BeforeAttachmentAdd
    BeforeAttachmentPreview
    BeforeAttachmentRead
    BeforeAttachmentSave
    BeforeAttachmentWriteToTempFile
    Where do you use the
    GetTemporaryFilePath method of the Attachment class? What code do you use?

  • HT201771 How can I edit my address options for sending mail in Mac Mail?

    I've had a mac.com address for many years. I also have an alias for my business mail. Since iCloud, every time I go to send an email, I have to select from mac.com, me.com, or iCloud.com versions of both addresses.  I am not interested in changing to either 'me.com' or 'iCloud.com', and would prefer to see only what I use.  Any suggestions?

    Hello ZoeW2001,
    Welcome to the Apple Support Communities!
    I understand that you have no access the email address you used for Apple ID. To edit that Apple ID to a different email address, please follow the instructions in the link below. 
     Change your Apple ID - Apple Support
    Have a great day,
    Joe

  • How to block a Sender from Sending Emails but Auto Reply Set on That Id should be able to send mails .

    hi ,
    I need to block a certain Email id from sending mails , but at the same time auto reply should work and any mail received by that id an auto reply should be generated .
    Please guide me m a not an exchange pro.
    Thanks

    Hi,
    I have some tests in my lab using Exchange 2010. I recommend you create a transport rule to prohibit a user from sending emails. Here is an example for your reference.
    And then use the following cmdlet to set the auto reply for this user.
    Set-MailboxAutoReplyConfiguration -Identity "amy02" -AutoReplyState Enabled -ExternalMessage "External OOF message here" -InternalMessage "Internal OOF message here"
    Here is the result.
    Hope it helps.
    Best regards,
    Amy Wang
    TechNet Community Support

  • Some Users on randomly basis unable to send mails from 2003 exchange to 2007 Exchange users Internally.

    Hi All,
    Some Users on randomly basis are unable to send e-mails from 2003 exchange to 2007 Exchange users Internally.
    They are sending mails from outlook and users from 2007 dont have any issues.
    But sometime mails from 2003 to 2007 goes without any issue.
    The NDR reported is as below.
    From: System Administrator
    Sent: 22 February 2014 15:59
    To: XYZ
    Subject: Undeliverable: Regarding Test Message
    Your message did not reach some or all of the intended recipients.
         Subject:  Regarding Test Message
         Sent:     22/02/2014 15:59
    The following recipient(s) could not be reached:
         XXX,XYZ on 22/02/2014 15:59
               The message contains a content type that is not supported
               <HubServer.Domain.UK #5.6.0 smtp;554 5.6.0 STOREDRV.Deliver.Exception:PropertyValidationException; Failed to process message due to a permanent exception>

    Hi,
    According to the NDR, I found this point "The message contains a content type that is not supported".
    Please verify whether the un-delivered messages contain some Sensitive
    Information,  signatures or attachments that cannot pass the Exchange 2007 Edge server. Please also check the content type of the un-delivered messages.
    Found a useful KB for your reference:
    Frequently asked questions about MIME and content conversion in Exchange 2000 Server and in Exchange Server 2003
    http://support.microsoft.com/kb/836555/en-us
    Hope it is helpful
    Thanks
    Mavis
    Mavis Huang
    TechNet Community Support

  • How to block the undeliverable message internally?

    How to block undeliverable message internally in case the internal sender sent email to one oversize internal recipient?
    Thanks a lot

    Exchange 2010/Outlook 2010
    Sorry for posting in such an old thread, but I have a similar issue:
    We have a mailing list account that receives thousands of Undeliverable messages every day.
    Could I use ECS to tell Exchange to Reject Messages From "MicrosoftExchange[long string]@domain.com?
    What would happen to the Undeliverable messages? Are there any problems with this?
    Thank you!
    -R
    Edit: that solution did not block the DSNs.
    I also tried creating a transport rule to delete all e-mail going to that account, but that only worked for personal e-mails, not DSNs.
    One solution I was able to come up with was to set a mail rule that sends everything to a subfolder. This will prevent the mailbox from hitting the "100,000 items in critical path folders" best practice.
    The second solution I am testing is to create a Mailbox Retention Policy to permanently delete all items older than 7 days.

  • How to block mobile devices connected to internal Wi-Fi networks on Lync 2013

    How to block mobile devices connected to internal Wi-Fi networks on Lync 2013.
    we don't have lyncdiscoverinternal.contoso.com and lyncdiscover.contoso.com in internal DNS record, all mobile users are connecting from Internet, and we want it to be that way.
    So if I create the lyncdiscoverinternal.contoso.com record for Windows desktop clients autodiscover, how do I block internal mobile users from connecting to Lync??
    Praveen | MCSE Messaging 2003

    Hi Praveen,
    Based on my experience, one way to achieve this purpose you need to use the Reverse Proxy that is integrate with a Firewall (e.g. TMG 2010 , F5, etc…).
    Please have a look at the following picture.
    In Lync Server 2013,
    both the internal Mobility Service URL and the external Mobility Service URL are associated with the external Web Services FQDN.
     From the above picture, if you use a reverse proxy that is
    separate from the firewall, then the hairpin will be created,
     and cause the mobile client which connected to the internal Wifi will be able to
     access the external interface of the Reverse Proxy.
    In this situation, the mobile client which from Internet will not be effected.
    Best regards,
    Eric
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Help, How to configure cisco ASA5505 to permit access to internal LAN

    Hi everyone,
    Once more I am stuck into another dilemma , I have configured a Cisco ASA 5505 to allow VPN access from outside to my LAN using Cisco VPN Client software. The connection is establishing properly with the ip address from my VPNPool.
    From outside (on VPN connection) I can ping the interface e0/0 (outside)  and the interface e0/1 (inside) of the firewall, but I cannot ping the layer 3 switch interface to which the ASA is connected ( int gi1/0/22 ip address 192.168.1.2/30 ) and I cannot ping any vlan interfaces inside my switch. Therefore, I cannot connect to any server on my internal LAN.
    I hope my explaination does make sense, I am available at any time if further information is needed. Please find attached my ASA config.
    Best regards,
    BEN

    Many thanks Marvin,
    I have configured the router ospf the way you instructed me, I have changed the VPN Pool to a complete different class of 10.0.1.0/24, I have also configured : access-list OUTSIDE_IN_ACL permit icmp any any echo-relpy and access-group OUTSIDE_IN_ACL in interface outside. but I can only from my VPN connection ping both interfaces of the ASA and nothing else.
    Please find attached my ASA and the layer 3 switch configs. And also ASA and L3 Switch ip route output.
    Note this: When connected to my VPN, cmd>ip config /all it showing as follows: ip address 10.0.1.100
                                                                                                                                   Subnet Mask 255.0.0.0 
                                                                                                                                    Def Gateway 10.0.0.1 
                                                                                                                                    dns server 192.168.30.3
    Best regards,
    BEN.
    Message was edited by: Bienvenu Ngala

  • Problems getting static NAT to work between two internal lans

    Hi, I'm trying the old problem of routing between two internal LANs. This on cli 8.6(1)2. I have three interfaces/LANs; outside is to the internet, inside is the rack in the datacentre and office is a dedicated ethernet link to our office. What I want to do is allow all (for now) traffic betrween office and inside. There's a million hits on this on the 'net but I can't get it to work. Packet trace shows packets accepted from office to inside but blocked from inside to office. Both static nats are set up identically. Here's the output of show nat after packet traces in both directions. It clearly shows that inside to office isn't hitting the nat policy. I enclose what I think are the relevant bits of my config. Full config less passwords + crypto attached.
    Manual NAT Policies (Section 1)
    1 (office) to (inside) source static inside-office inside-office   destination static inside-ld5 inside-ld5 no-proxy-arp route-lookup
        translate_hits = 0, untranslate_hits = 3
    2 (inside) to (office) source static inside-ld5 inside-ld5   destination static inside-office inside-office no-proxy-arp route-lookup
        translate_hits = 0, untranslate_hits = 0
    interface GigabitEthernet0/0
    nameif inside-ld5
    security-level 100
    ip address 10.20.15.2 255.255.255.0
    interface GigabitEthernet0/6
    nameif office
    security-level 100
    ip address 10.20.11.9 255.255.255.0
    object network inside-ld5
    subnet 10.20.15.0 255.255.255.0
    object network inside-office
    subnet 10.20.11.0 255.255.255.0
    same-security-traffic permit inter-interface
    same-security-traffic permit intra-interface
    nat (office,inside) source static inside-office inside-office destination static inside-ld5 inside-ld5 no-proxy-arp route-lookup
    nat (inside,office) source static inside-ld5 inside-ld5 destination static inside-office inside-office no-proxy-arp route-lookup

    Hi Kevin,
    because your interfaces inside and office are in same security level and you have enabled same-security-traffic permit inter-interface, traffic should simply flow between this interfaces. So i think you don't need NAT between this two subnets if there is not other reason to do so.
    Then you just configure ACL which will permit traffic you want between this LANs. In this case both netwroks are directly conneted so routing should work(instead of NAT).
    Best Regards,
    Jan

Maybe you are looking for