Jump to content

safarov

Members
  • Posts

    260
  • Joined

  • Last visited

  • Days Won

    4

Posts posted by safarov

  1. I have prepared AWS CloudFormation stack. This allow make requred configration. Just need upload text file in the AWS CloudFormation and then generate tocken in IAM app.

    CloudFormation stack

    Description: >-
      Stack creates an S3 bucket for Kazoo recordings and configures access permission
    Resources:
    ################################################
    # IAM Users
    ################################################
      UserKazoo:
        Type: AWS::IAM::User
        Properties:
          UserName: kazoo
    ################################################
    # S3 Bucket
    ################################################
      S3Bucket:
        Type: AWS::S3::Bucket
        Properties:
          BucketName: 278544129100-kazoo
          PublicAccessBlockConfiguration:
            BlockPublicAcls: true
            BlockPublicPolicy: true
            IgnorePublicAcls: true
            RestrictPublicBuckets: true
          LifecycleConfiguration:
            Rules:
              - Id: DefaultRule
                Status: Enabled
                ExpirationInDays: 40
                Transitions:
                  - TransitionInDays: 10
                    StorageClass: GLACIER
    #          - Id: Tenant-XXX
    #            Status: Enabled
    #            Prefix: 'subfolder'
    #            ExpirationInDays: 40
    #            Transitions:
    #              - TransitionInDays: 10
    #                StorageClass: GLACIER
    ################################################
    # S3 Policy
    ################################################
      PolicyKazoo:
        Type: 'AWS::S3::BucketPolicy'
        Properties:
          Bucket: !Ref S3Bucket
          PolicyDocument:
            Id: S3ForKazoo
            Statement:
            - Action:
              - 's3:ListBucket'
              - 's3:PutObject'
              - 's3:GetObject'
              Effect: Allow
              Resource:
                - !Sub arn:aws:s3:::${S3Bucket}
                - !Sub arn:aws:s3:::${S3Bucket}/*
              Principal:
                AWS:
                - !GetAtt UserKazoo.Arn
    

     

  2. On 2/11/2019 at 9:24 PM, Jack Noe said:

    Hi all

    When forwarding from the system to a cell phone, is it possible to have the cell phone receive a prefix before the call, for example a number etc...

     So we are adding a device, a cell phone and when the cell phone receives calls, i want that a number or letter or any indication that the call is from the system should come along, with the original caller ID

     

    you can prepend caller name, not number. As example "hotdesk-", "sales-" and etc.

  3. Video via loopback is not supported.

    More detail in FreeSwitch mailing list, thread "Video across loopback".

    To get it working I see three options:

    1) make FreeSwitch loopback video/fax media compatible;

    2) not use FreeSwitch loopback for call between accounts;

    3) change number types to local, then call between accounts will routed via upstream equipment.

×
×
  • Create New...