Questions tagged [bcc]

A BCC (blind carbon copy; also Bcc) is a copy of an email message sent to a recipient whose email address does not appear in the message.

In the context of correspondence, blind carbon copy (abbreviated Bcc:) refers to the practice of sending a message to multiple recipients in a way that conceals the fact that there may be additional addresses from the complete list of recipients. This concept originally applied to paper correspondence and now also applies to email.
This is in contrast to To and CC recipients, whose addresses do appear in the respective header lines. Every recipient of the message can see all the To and CC recipients, but does not know about BCC recipients.

187 questions
0
votes
1 answer

How to get syscall table address with eBPF (BCC)

I want to use Kprobe in eBPF to fetch the syscall addresses from the syscall table. How can I perform this task? I wrote, but I do not know how to find the symbol table corresponding to the kernel.
0
votes
1 answer

Add Bcc addresses from a column of a datagridview

I'm creating a program that reads a column of a datagridview that contains email addresses and inserts them as Bcc. I would like to write multiple email addresses in the Bcc. I can enter one email address. Mail.Bcc.Add(New…
0
votes
0 answers

Logical Block Address access above Kworker Level

Currently, I am trying to trace Logical Block Address (LBA) access per process. I am aware of biosnoop.py that probes "blk_start_request". With the program I try to intercept I only get to see kworkers. Two ideas to resolve this problem: Find out…
johannes
  • 11
  • 2
0
votes
3 answers

Trying to send multiple bcc in oracle UTL_MAIL

I am trying to send multiple email addresses through an Oracle package/procedure. I have the procedure working when sending only a single to, cc, bcc. (That means I can send one of each.) But although have a loop that generates a correct, single…
amackley
  • 3
  • 1
0
votes
1 answer

C# MailMessage BCC property show address list in email when delivery

When i used this code, when the email is delivered the list of addresses in bcc is visible, why please? I use .Net Framework 4.6.2 The code works correctly, it sends the emails but when I check the To: in the email delivered I can see all the…
JG73
  • 90
  • 1
  • 10
0
votes
0 answers

How to change eBPF program attached to the same event?

I'm new to eBPf, I want to chang kernel program attached to the same event in user application. So I write the following code: #!/usr/bin/python from bcc import BPF import time import sys prog1 = """ int hello(void *ctx) { …
Nicholas
  • 127
  • 1
  • 11
0
votes
0 answers

How to stop ebpf

I use bcc to trace a function and use bpf_trace_printk to print some info. But when I stop the bcc script, there is still infomation printed from /sys/kernel/debug/tracing/trace_pipe, how can I stop it?
0
votes
1 answer

How to send email in python with sendgrid and dynamic template, with BCC addresses?

In python 3 and sendgrid I need to send BCC type emails and use a dynamic template, which I built here In the dynamic template I put a blank space to receive data that I will send. I created the variable {{lista}} in the blank space. It looked like…
Reinaldo Chaves
  • 965
  • 4
  • 16
  • 43
0
votes
1 answer

OSError: libclangFrontend.so.5: cannot open shared object file: No such file or directory

I am running bcc-tools on cent os 7. I have taken all the steps available on google: set LD_LIBRARY_PATH the one available here: https://blogs.oracle.com/linux/post/intro-to-bcc-2 llvmtoolset is already installed I just want to run bcc-tools on…
user248396
  • 25
  • 4
0
votes
1 answer

PHPMailer: Batch mailing using addBCC()

Ok, so I need to fetch all email addresses from a database and send an email notice to each in a batch. Using addAddress() would reveal all destination emails to every recipient. Using addBCC() fixes it but now there is another problem which is a…
Puddintane
  • 5
  • 1
  • 3
0
votes
0 answers

ebpf iterate through multiple maps

I would like to create an array of maps so I can iterate through them. For instance I have the three pinned maps below. BPF_TABLE_PINNED("hash", struct mapkey, struct output_f, map1, mapSize, "/sys/fs/bpf/map1"); BPF_TABLE_PINNED("hash", struct…
0
votes
1 answer

using bcc function gives error :Address in mailbox given [$users] does not comply with RFC 2822, 3.6.2

i have to send the bulk emails using bcc but it gives error,i also read somewhere bcc function takes 2 parameters but this also didn't work.var_dump($users) it giving correct output public function welcomeEmails() { $users =…
0
votes
1 answer

sending emails using sendgrid nodejs

i create this nodejs app to send emails for marcketing using sendgrid Api, in fact it's working but i have a problem that i have to remove param message to: 'exemple@gmail.com' and not display it in the email just the bcc recipients, this is the…
0
votes
1 answer

BCC doesn't seem to function as an option of sendEmail - name and replyTo work though

function myFunction() { var ss = SpreadsheetApp.getActive(); var sheet = ss.getSheetByName("Welcome"); var targetSheet = ss.getSheetByName("Done"); var startRow = 2; var lr = sheet.getLastRow(); var dataRange = sheet.getRange(startRow,…
Fabien
  • 87
  • 8
0
votes
1 answer

PHPMailer: is it possible to set a different message-id for bcc?

As in subject. Is it at all to send and email with PHPMailer and assign different message-id for the mail sent to 'to' and do 'bcc'? (Yes, I know is not exactly compliant with RFC nor is intuitive to do such a thing.)
Olalike
  • 3
  • 2